├── .bowerrc ├── .gitignore ├── README.md ├── bower.json ├── package.json ├── public ├── app.js ├── bower_components │ └── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ └── bower.json └── index.html └── server.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/package.json -------------------------------------------------------------------------------- /public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/app.js -------------------------------------------------------------------------------- /public/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /public/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/README.md -------------------------------------------------------------------------------- /public/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /public/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/angular.js -------------------------------------------------------------------------------- /public/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /public/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /public/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /public/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/bower_components/angular/bower.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio/egghead-angularjs-aunthentication-with-jwt/HEAD/server.js --------------------------------------------------------------------------------