A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
This repository is used to deploy the back-end of the main event, the Hackathon, of the CSLabs.
Install the dependencies using the following command:
$ npm installFor updating dependencies and install, use the following command:
$ npm install -g npm-check-updatesThe app is containerized using docker. To run the app, you need to have docker installed on your machine.
# development
$ docker-compose build
# watch mode
$ docker-compose up # this will start the app in watch mode
$ docker-compose up -d # this will start the app in watch mode in the background
# production mode
$ docker-compose -f docker-compose.prod.yml up # this will start the app in production mode# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:covNest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
- Author - Kamil Myśliwiec
- Website - https://nestjs.com
- Twitter - @nestframework
Nest is MIT licensed.