https://github.com/yatharth1706/userauthorization-jwt
:white_flag: Using JWT (Json Web Token) to authorize user at backend
https://github.com/yatharth1706/userauthorization-jwt
bcrypt-nodejs jshint jwt-authentication nodejs token
Last synced: 3 months ago
JSON representation
:white_flag: Using JWT (Json Web Token) to authorize user at backend
- Host: GitHub
- URL: https://github.com/yatharth1706/userauthorization-jwt
- Owner: yatharth1706
- License: gpl-3.0
- Created: 2020-04-25T08:51:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T15:41:14.000Z (over 2 years ago)
- Last Synced: 2025-02-13T19:18:59.037Z (4 months ago)
- Topics: bcrypt-nodejs, jshint, jwt-authentication, nodejs, token
- Language: JavaScript
- Homepage:
- Size: 159 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## JWT
[](https://travis-ci.com/yatharth1706/UserAuthorization-JWT) [](https://github.com/yatharth1706/UserAuthorization-JWT/blob/master/LICENSE) [](https://github.com/yatharth1706/UserAuthorization-JWT/issues) [](https://github.com/yatharth1706/UserAuthorization-JWT/stargazers)
#### What is JWT?
JWT is abbreviated as JSON Web Token.
JWT is compact and URL safe means of sending claims between two parties.
In simple language its a way of authentication between client and server.
It transmits information between two parties in the form
of Json object which is very lightweight and cross platform.
This information can be verified and trusted because it is digitally signed.
JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA or ECDSA
#### Resources1. jwt.io