Skip to content

i-link-pro-team/nestjs-boilerplate

Repository files navigation

Logo

NestJS boilerplate application

Branches

Features

  • Node v14.17.1
  • Conventional commits
  • ESLint
  • Launch scripts (prebuild, build, start, test, etc.)
  • Precommit prettier
  • VSCode debug launcher
  • Strict ruled tsconfig.json

Installation

$ npm install

Running the app

# if your default nodeJS version is not v14.17.1
$ nvm use 

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov