Skip to content

Proof of concept application that demonstrates an authentication flow for a pizza ordering system. It is made of a single page application using ReactJS for its front-end, NodeJS and Express for its API back-end plus Auth0 to handle the IAM as a Service

Notifications You must be signed in to change notification settings

LoicLw/Auth0-PoC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Auth0 SPA front-end + API back-end authentication

Setup

Use npm to install the project dependencies and run in development. It will compiles and serves the React app, and starts the backend API server on port 3001. Calls to http://localhost:3000/api/* routes will be proxied through to the backend. Point DNS A records to your VPS so you can use also use Casper to serve valid HTTPS using Let's Encrypt certificate.

git clone https://github.com/LoicLw/Auth0-PoC.git
cd Auth0-PoC/
npm install
npm run dev
sudo ./caddy reverse-proxy --from https://auth0.chatdocs.io --to http://localhost:3000

Configuration

The proof of concept can be configured with your Auth0 main app domain and client ID in src/auth_config.json. You can set up your private application Client ID and Client Secret in your .env.development file.

An API endpoint /api/order is set in the NPM Express server. It requires a bearer token to be supplied in the Authorization header as provided during the authentication flow. Validation of the JWT uses express-jwt middleware to validate the token against the identifier of your API as set up in the Auth0 dashboard, as well as checking that the signature is valid.

License

This project is licensed under the MIT license.

About

Proof of concept application that demonstrates an authentication flow for a pizza ordering system. It is made of a single page application using ReactJS for its front-end, NodeJS and Express for its API back-end plus Auth0 to handle the IAM as a Service

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published