A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
Install Docker Desktop (Docker Desktop)
Install Docker Desktop in order to spin up postgresql container. The application uses docker compose in order to start a postgresql container.
The application uses the environment variables from an .env file. Create the .env file and populate all the needed environment variables from the .env.example file.
In the .nvmrc file is specified the node.js version.
If you are using nvm you can run nvm install
and nvm use
in the project directory in order to install and use the specified node.js version.
$ 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
Nest 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.