A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ yarn# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod# MongoDB
$ docker-compose up -d
# Run Mongo Shell
$ docker-compose exec mongo bash
$ mongo -u <username> -p <password># run prettier
$ yarn run format# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov