https://github.com/hir4/jwt
Controlling session with JWT.
https://github.com/hir4/jwt
bcrypt cookie-parser css html javascript jwt nodejs
Last synced: 8 months ago
JSON representation
Controlling session with JWT.
- Host: GitHub
- URL: https://github.com/hir4/jwt
- Owner: Hir4
- Created: 2021-07-03T04:02:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-02T11:25:04.000Z (over 4 years ago)
- Last Synced: 2025-05-17T01:35:20.311Z (10 months ago)
- Topics: bcrypt, cookie-parser, css, html, javascript, jwt, nodejs
- Language: JavaScript
- Homepage:
- Size: 12.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
JWT

## :dart: About ##
Controlling session with JWT.
## :rocket: Technologies ##
- [HTML]
- [CSS]
- [Javascript]
## :white_check_mark: Prerequisite ##
Before start, you will need:
- [express]
```bash
npm install express --save
```
- [body-parser]
```bash
npm install body-parser
```
- [cookie-parser]
```bash
npm install cookie-parser
```
- [bcrypt]
```bash
npm install bcrypt
```
- [JWT]
```bash
npm install jsonwebtoken
```
## :checkered_flag: Running
```bash
#Choose the port you want to start (default:8080), then just run:
node app.js
```