🔍 What do you find here?


JWT

JSON Web Tokens are an open, industry-standard RFC 7519 method for representing claims securely between two parties. Official website: https://jwt.io/

<aside> 👉 ❯ save token on storage ❯ token has an expiration date

</aside>

Tooling

<aside> 📌 ❯ Token Schema: aaa.bbb.ccc → header.payload.signature ❯ jsonwebtoken: package → sign({'payload'}, 'token MD5', params)

</aside>


Next Auth

JSON Web Tokens are an open, industry-standard RFC 7519 method for representing claims securely between two parties. Official website: https://jwt.io/

<aside> 👉 ❯ a simple authentication system simple ❯ integration with social login (Github, Facebook, Google) ❯ it does not need to store user information

</aside>

Tooling

<aside> 📌 ❯

</aside>