├── .gitignore ├── LICENSE ├── README.md ├── anonymous-routes.js ├── config.json ├── package.json ├── protected-routes.js ├── quoter.js ├── quotes.json ├── server.js ├── statusError.js └── user-routes.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/README.md -------------------------------------------------------------------------------- /anonymous-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/anonymous-routes.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/package.json -------------------------------------------------------------------------------- /protected-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/protected-routes.js -------------------------------------------------------------------------------- /quoter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/quoter.js -------------------------------------------------------------------------------- /quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/quotes.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/server.js -------------------------------------------------------------------------------- /statusError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/statusError.js -------------------------------------------------------------------------------- /user-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/nodejs-jwt-authentication-sample/HEAD/user-routes.js --------------------------------------------------------------------------------