- Using Typescript in src / testing
- Developer friendly dev-environment with linting & hot-reload
- Testing using Jest/Supertest
- Advanced logging using Winston/Morgan
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
# unit tests with watcher
npm run test:watch