// Init a project with Node.js / -y = no questions
npm init - y
- ✨ Node.js
- 💣 Express.js
- 🚀 Mongoose (mongoDB)
npm run dev
- Nodemon (Automatic update) - npm i nodemon -D
- Standard (Easy Eslint, standard --fix)
- Cors (Any origin works in our API) - npm i cors
- Express - npm i express
- Mongoose (schemas)
- JWT (Json Web Tokens) - npm i jsonwebtoken
- dotenv (get the .env file working with environment variables) - npm i dotenv