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

https://github.com/emanuelefavero/jwt-easy-api

This is an easy to understand API that uses JWT for authentication.
https://github.com/emanuelefavero/jwt-easy-api

Last synced: 6 months ago
JSON representation

This is an easy to understand API that uses JWT for authentication.

Awesome Lists containing this project

README

          

# JWT Easy API

This is an easy to understand API that uses JWT for authentication.

## Installation

- Clone the repository, then:

```bash
cd jwt-easy-api
npm install
```

## Usage

```bash
npm start
```

OR (if you have nodemon installed)

```bash
npm run dev
```

## Test API

- If you have vscode installed, you can use the [REST Client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) extension to test the API. (SEE test.http file)
- you can also use [Postman](https://www.postman.com/) to test the API. (use the test.http file as a reference for the requests)

### Useful links

- [JWT](https://jwt.io/)
- [JWT Libraries](https://jwt.io/libraries)