Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
756 B

# JSON Web Token
JWT, or JSON-Web-Token, is an open standard for sharing security information between two parties — a client and a server. Each JWT contains encoded JSON objects, including a set of claims. JWTs are signed using a cryptographic algorithm to ensure that the claims cannot be altered after the token is issued.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Official Package' colorScheme="blue" href='https://www.npmjs.com/package/jsonwebtoken'>Package Documentation</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.akana.com/blog/what-is-jwt'>What is JWT</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=mbsmsi7l3r4'>JWT Implementation</BadgeLink>