├── .gitignore ├── README.md ├── index.js ├── package.json └── requests ├── create_note.rest ├── delete_note.rest └── get_all_notes.rest /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /dist 3 | .env 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/part3-notes-backend/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/part3-notes-backend/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/part3-notes-backend/HEAD/package.json -------------------------------------------------------------------------------- /requests/create_note.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullstack-hy2020/part3-notes-backend/HEAD/requests/create_note.rest -------------------------------------------------------------------------------- /requests/delete_note.rest: -------------------------------------------------------------------------------- 1 | DELETE http://localhost:3001/api/notes/3 -------------------------------------------------------------------------------- /requests/get_all_notes.rest: -------------------------------------------------------------------------------- 1 | GET http://localhost:3001/api/notes --------------------------------------------------------------------------------