Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1 KB

README.md

File metadata and controls

56 lines (35 loc) · 1 KB

Nest Logo

Description

A sample NestJS application, demonstrating how to use JWT Authentication, with short lived access tokens, and long lived refresh tokens.

The architecture is opinionated, comments and PR are appreciated.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Got to http://localhost:1337/api/swagger to find the swagger doc.

Roadmap

  • Add third party providers Auth (Facebook, Google, Twitter, etc...)
  • Add Redis cache for blacklisted access tokens (for now it's in memory)
  • Update password, Lost password

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

License

Nest is MIT licensed.