This a Note Taker App that runs on node and uses express.js to route all the get, post and delete methods. This app has a Front-End portion that was made using HTML, bootstrap and javascript, that will take notes and displays them.
Stars
2
Forks
0
Watchers
2
Open Issues
0
Overall repository health assessment
^4.16.4^8.3.212
commits
Added comments for the server.js that explains all methods and functions used
af713b4View on GitHubAdded comments to the notesRouter.js that explains every function and method used in that file
80af4a9View on GitHubAdded comments that explains what each function does in the fsUtils.js
270a737View on GitHubAdded new route for api/notes in routes folder and app.use in the server.js file
0675139View on GitHubAdded an app.delete function that will check for the id and get the index of the to deleted note and then modify the json and write it to the file system
79fb326View on GitHubAdded a helpers folder that has the funcions readFromFile nesseccery for the get functions to read a json file from the file system and added the readAndAppend function that is nesseccery for the post functions to read the json file the parse the data then push anothor note object after that we make to a call to writeToFile function that will stringify our notes array of objects and write it to the file system
5a6db41View on GitHubAdded app.get for the routes /notes, *, /api/notes and an app.post for the route /api/notes
195bc94View on GitHubRearranged the starter code repoditory structure to follow the more popular file structure
777f1ebView on GitHub