Fake Api Jwt Json Server Save

A Fake API with JWT Authentication using json-server and jsonwebtoken

Project README

JSONServer + JWT Auth

A Fake REST API using json-server with JWT authentication.

Implemented End-points: login,register

Install

$ npm install
$ npm run start-auth

Might need to run

npm audit fix

How to login/register?

You can login/register by sending a POST request to

POST http://localhost:8000/auth/login
POST http://localhost:8000/auth/register

with the following data

{
  "email": "[email protected]",
  "password":"nilson"
}

You should receive an access token with the following format

{
   "access_token": "<ACCESS_TOKEN>"
}

You should send this authorization with any request to the protected endpoints

Authorization: Bearer <ACCESS_TOKEN>

Check out these tutorials:

Open Source Agenda is not affiliated with "Fake Api Jwt Json Server" Project. README Source: techiediaries/fake-api-jwt-json-server
Stars
278
Open Issues
19
Last Commit
1 year ago

Open Source Agenda Badge

Open Source Agenda Rating