- What is Joel
- What is JWT
- Example project setup
- Live coding of a simple example
- JWT is a standard
- JSON WEB TOKEN
- Token will look like AAAAAAA.BBBBBB.CCCCCC
- [Header].[Payload].[Signature]
- Secure transmission of data by signing data with a secret
- Secret must be kept secret!
- Token must be stored securely!
- JWT standard: https://tools.ietf.org/html/rfc7519
- JWT debugger tool: https://jwt.io/#debugger-io
- JWT token storage in browser: https://stackoverflow.com/questions/27067251
- JWT tool used: https://www.npmjs.com/package/jsonwebtoken