https://github.com/netanelbasal/jwt-node-express
clean JWT authentication with node and express
https://github.com/netanelbasal/jwt-node-express
Last synced: about 2 months ago
JSON representation
clean JWT authentication with node and express
- Host: GitHub
- URL: https://github.com/netanelbasal/jwt-node-express
- Owner: NetanelBasal
- Created: 2015-09-30T12:37:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-05-24T05:15:07.000Z (about 9 years ago)
- Last Synced: 2025-02-25T06:43:13.798Z (over 1 year ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JWT authentication with node js
- run npm install
- run npm start
### The api:
```
POST http://localhost:3000/auth/login with params:
{password: String, email: String [valid-email]}
POST http://localhost:3000/auth/register with params:
{name: String, password: String [1-6], email: String [valid-email]}
```