0.0.3 • Published 4 years ago

nestjs-jwt-auth v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

nestjs-jwt-auth A plug-and-play auth module for the NestJS framework 🚀.

This project is currently in development. More updates and a stable release to come!

Installation

npm install --save nestjs-jwt-auth

Usage

// app.module.ts
import { NestAuthModule } from 'nestjs-jwt-auth';


imports: [
	NestAuthModule,
]

The nestjs-jwt-auth module will automatically load your database connection.

You must have a database table called user with at least the fields:

  • username
  • password