Domain Driven Design Boilerplate for NestJS based backend.
- NodeJS Target Runtime -
14.X.X - NestJS Version -
7.X.X - Module -
CommonJS - Target -
ES2020
- Set
LOG_DIRandDEV_LOG_FILENAMEin the env file.LOG_DIRis the directory for storing the logs.DEV_LOG_FILENAMEis the filename for the log file.
$ npm install# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov