https://github.com/nanshekhar04/jwt-16bit
JWT is created with a secret key and that secret key is private to you which means you will never reveal that to the public or inject inside the JWT token & that's were jwt-16bit comes into picture. It generates a super secret random string of characters & letters.
https://github.com/nanshekhar04/jwt-16bit
json jwt jwt-authentication jwt-tokens
Last synced: 3 months ago
JSON representation
JWT is created with a secret key and that secret key is private to you which means you will never reveal that to the public or inject inside the JWT token & that's were jwt-16bit comes into picture. It generates a super secret random string of characters & letters.
- Host: GitHub
- URL: https://github.com/nanshekhar04/jwt-16bit
- Owner: NaNshekhar04
- License: mit
- Created: 2023-01-21T14:52:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T15:24:58.000Z (over 3 years ago)
- Last Synced: 2024-05-01T21:17:14.984Z (about 2 years ago)
- Topics: json, jwt, jwt-authentication, jwt-tokens
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/jwt-16bit
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
JWT-16bit
### Starts up express server without writing that boring server boilerplate code.
[](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE)
[](https://www.npmjs.com/package/jwt-16bit)
[](https://www.npmjs.com/package/jwt-16bit)
### Usage
First, run npm install jwt-16bit for your app & than simply require it.
```bash
const jwt16bit = require("jwt-16bit")
```
### How it works ?
Once Installed and required now simply log it to the console by invoking the required function.
This will generate a super secret string code inside the terminal so now you can use it as your super secret JWT secret inside your JWT-Auth applications.
```bash
const jwt16bit = require("jwt-16bit")
console.log(jwt16bit());
```
### Results
Generates supersecret JWT secret for you next application.
```bash
Example output in console!
7hT3fJ9kM6nR2sQ8
5Pc9nM5K7tL9XE5t
```
### Contributing
1. [Install node](http://nodejs.org/#download).
2. Clone this repository `$ gh repo clone NaNshekhar04/JWT-16bit`.
3. Install dependencies `$ npm install`.
4. Start Hacking!
Feel free to contribute to the repo. Just make sure you Open an [Issue](https://github.com/NaNshekhar04/JWT-16bit/issues) first before raising the Pull Request!