nestjs-saas
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

Nestjs SaaS Library

Installation

$ yarn add nestjs-saas @nestjs/jwt @nestjs/config @nestjs/mongoose
$ npx nestjs-saas init

Configuration

The required config variables were appended to your .env file. You can change the values as needed.

Import

import { Module } from '@nestjs/common'
import { ConfigModule } from '@nestjs/config'
import { JwtModule, JwtModuleOptions } from '@nestjs/jwt'
import { MongooseModule } from '@nestjs/mongoose'
import { NestjsSaasModule } from 'nestjs-saas'
import { AppController } from './app.controller'
import { AppService } from './app.service'
import { AuthController } from './user/auth/auth.controller'
import { AuthService } from './user/auth/auth.service'
import { User, UserSchema } from './user/user.model'
import { UserService } from './user/user.service'
import { UserController } from './user/users.controller'

const jwtOptions: JwtModuleOptions = {
  global: true,
  secret: process.env.JWT_SECRET,
  signOptions: { expiresIn: '5 minutes' },
}

@Module({
  imports: [
    ConfigModule.forRoot(),
    MongooseModule.forRoot(process.env.MONGO_URI),
    MongooseModule.forFeature([{ name: User.name, schema: UserSchema }]),
    JwtModule.register(jwtOptions),
    NestjsSaasModule.forRoot({
      jwt: jwtOptions,
      email: {
        from: 'hi@example.com',
        templates: {},
      },
    }),
  ],
  controllers: [AppController, AuthController, UserController],
  providers: [AppService, AuthService, UserService],
})
export class AppModule {}

Readme

Keywords

none

Package Sidebar

Install

npm i nestjs-saas

Weekly Downloads

125

Version

0.0.6

License

MIT

Unpacked Size

207 kB

Total Files

136

Last publish

Collaborators

  • marianopardo