An open API service indexing awesome lists of open source software.

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

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]}
```