├── .gitignore ├── Readme.md ├── app ├── controllers │ └── note.controller.js ├── models │ └── note.model.js └── routes │ └── note.routes.js ├── config └── database.config.js ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/Readme.md -------------------------------------------------------------------------------- /app/controllers/note.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/app/controllers/note.controller.js -------------------------------------------------------------------------------- /app/models/note.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/app/models/note.model.js -------------------------------------------------------------------------------- /app/routes/note.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/app/routes/note.routes.js -------------------------------------------------------------------------------- /config/database.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | url: 'mongodb://localhost:27017/easy-notes' 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callicoder/node-easy-notes-app/HEAD/server.js --------------------------------------------------------------------------------