A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
Install the node version mentioned in .nvmrc.
$ npm install# install needed services and run migrations
$ npm run infra:up
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# stop containers and removes containers, networks, volumes, and images created by up
$ npm run infra:down# unit tests
$ npm run test
# watch mode
$ npm run test:watch
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov$ docker-compose up -d app-production
# stop containers and removes containers, networks, volumes, and images created by up
$ npm run infra:down