Please see readme.md in each app for more information
This is the basic, old-fashioned, authorization which uses cookies and is most suitable for browsers.
To store session's data on the server side it additionally uses Redis.
Same as above but with WebSockets support
JWT stands for JSON Web Token. This type of authorization does not store user's data on server but passes it with each request
It is same good for casual websites, server to server communications and mobile apps
Same as above but with WebSockets support
GraphQL based version of JWT authorization
JWKS stands for JSON Web Key Sets. This is a set of keys containing the public keys used to verify any JWT issued by the authorization server
This type of authorization feats the best if you are going to have only one Authorization provider (like Auth0) with multiple accounts
It is assumed that you have nodejs, yarn/npm, postgres and for session based apps - redis already installed on your system
Then if you are going to use features provided by monorepo you can install all dependencies at once
npm i
npm run bootstrap
then go to any app and execute
npm start
this will start application on default settings.
Otherwise, go to each individual app and check readme.md
- Apple JWKS
- Auth0 JWKS
- Google JWKS
- Google JWT
- Firebase
- OneLogin
- Local JWT
- Local cookies
- Biometric
- Metamask
RPs, especially with new providers, are welcome