https://github.com/utsavdotpro/auth-nestjs
A practice project to try Session based and JWT based authentication in NestJS
https://github.com/utsavdotpro/auth-nestjs
backend express-session jwt nestjs practice-project prisma typescript
Last synced: 2 months ago
JSON representation
A practice project to try Session based and JWT based authentication in NestJS
- Host: GitHub
- URL: https://github.com/utsavdotpro/auth-nestjs
- Owner: utsavdotpro
- Created: 2022-01-23T16:17:20.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-23T18:00:29.000Z (over 4 years ago)
- Last Synced: 2025-08-24T23:32:40.669Z (10 months ago)
- Topics: backend, express-session, jwt, nestjs, practice-project, prisma, typescript
- Language: TypeScript
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Auth-NestJS
A simple back-end project to implement user authentication with the Session and JWT method. Check the following branches for the implementation:
- [session](https://github.com/u-barnwal/auth-nestJS/tree/session)
- [jwt](https://github.com/u-barnwal/auth-nestJS/tree/jwt)
## Installation
```bash
$ yarn install
```
## Running the app
```bash
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
```
## Credits
- **NestJS Authentication** from Marius Espejo: https://youtu.be/_L225zpUK0M
- **NestJS Crash Course** from Marius Espejo: https://youtu.be/2n3xS89TJMI
---
A progressive Node.js framework for building efficient and scalable server-side applications.