A progressive Node.js framework for building efficient and scalable server-side applications.
I wanted to try another framework, instead of Express, so I decided to use Nest.js.
At first, I was a little confused, but as time went by I could figure how to make this simple project work, and this is thanks to the awesome documentation provided by Nest.
My first impression of this framework was amazing. I really enjoyed using the decorators, which gave me a sense of customization and freedom to develop new features.
I'm looking forward to building more things with this framework soon.
- Clone the repo
git clone https://github.com/lucfersan/nestjs-crud
- Install NPM packages
yarn
- Create a docker container
docker run --name first_nest_app -e POSTGRES_PASSWORD=docker -p 5432:5432 -d postgres
- Create database named: first_nest_app
# development
$ npm run start
or
$ yarn start
# watch mode
$ npm run start:dev
or
$ yarn start:dev
# production mode
$ npm run start:prod
or
$ yarn start:prod
# unit tests
$ npm run test
or
$ yarn test
# e2e tests
$ npm run test:e2e
or
$ yarn test:e2e
# test coverage
$ npm run test:cov
or
$ yarn 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.
Nest is MIT licensed.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Lucas Fernandes - fernandes.lucas11@outlook.com