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.
- Host: GitHub
- URL: https://github.com/emanuelefavero/jwt-easy-api
- Owner: emanuelefavero
- Created: 2022-10-29T04:15:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-29T04:15:23.000Z (almost 3 years ago)
- Last Synced: 2025-02-04T16:50:29.853Z (8 months ago)
- Language: JavaScript
- Size: 705 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)