All projects develop during gostack11 2020 course by https://rocketseat.com.br/gostack
- Web framework for Node.js - (https://expressjs.com/)
$ npm install express
---OR---
$ yarn add express
- Monitor for any changes in your source and automatically restart your server - (https://nodemon.io/)
$ npm install nodemon -D
---OR---
$ yarn add nodemon -D
- Universally unique identifier - (https://www.npmjs.com/package/uuidv4)
$ npm install uuidv4 -D
---OR---
$ yarn add uuidv4 -D
- Jest is a delightful JavaScript Testing Framework with a focus on simplicity. - (https://jestjs.io/)
$ npm install jest -D
---OR---
$ yarn add jest -D
- The motivation with this module is to provide a high-level abstraction for testing HTTP, while still allowing you to drop down to the lower-level API provided by superagent. - (https://www.npmjs.com/package/supertest)
$ npm install supertest -D
---OR---
$ yarn add supertest -D
- CORS is a node.js package for providing a Connect/Express middleware that can be used to enable CORS with various options. - (https://www.npmjs.com/package/cors)
$ npm install cors
---OR---
$ yarn add cors