https://github.com/jefferson1104/nestjs-auth
Authentication API developed with typescript and the nest.js backend framework.
https://github.com/jefferson1104/nestjs-auth
nestjs nodejs typescript
Last synced: 3 months ago
JSON representation
Authentication API developed with typescript and the nest.js backend framework.
- Host: GitHub
- URL: https://github.com/jefferson1104/nestjs-auth
- Owner: jefferson1104
- Created: 2021-09-09T14:10:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-27T14:05:42.000Z (over 3 years ago)
- Last Synced: 2025-01-11T14:47:51.839Z (5 months ago)
- Topics: nestjs, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 800 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About this project
An API developed with the Nest.js framework and typescript, a basic example of an authentication system using JWT.
## Run the project
```bash
# Clone this repository
$ git clone https://github.com/jefferson1104/nestjs-auth.git# Running this API
$ npm run start:dev
```## Generate a password with bcrypt
```bash
# Run the command below in the project terminal
node generate-password.js PASSWORD## E X A M P L E
# comand: node generate-password.js 123456
# output: $2b$10$2QHAEW0XFWmCrxeJGBKa2eSXXvPcsWp.WWsohEfqzn1LWs/4NLvrS
```