- run "npm install"
- Make sure that mongo server is running and port 27017 of localhost is responding appropriately.
- run "node index.js"
- Using curl/Postman add/modify/delete items in the todo list.
- If you do not have Mongo Extension in VS Code, please add it: MongoDB for VS Code
- Refactor the code in index.js file so the routes, the models, and other code is located in different folders. Use the "recipes-api" app as a reference, and/or run "npx express-generator" following the instructions in expressjs.com/en/starter/generator.html
|_ package.json
|_ .babelrc
|_ .env
|_ .gitignore
|_ src
|_ index.js
|_ models
| |_ index.js
| |_ recipe.js
| |_ users.js message.js
|_ routes
| |_ index.js
| |_ recipe.js
| |_ users.js messages.jd session.js
|_ node_modules
|_ README.md
todo-list app
|_ package.json
|_ index.js
|_ node_modules
|_ README.md
|_ .gitignore
|_ .env