This "NoteTaking" application helps create & save notes & retrieve it whenever required.
- Preferred editor - VS Code
- run command
npm install
to install all node dependencies
This app takes four commands:
1.add
2.remove
3.list
4.read
add - This is used to add/create new notes to your file
remove - This is used to remove an existing note from the file
list- This is used to list all the title of the saved notes
read - This is used to read an existing note with a given title
node app.js add --title="utk" --body="utkarshmehta"
- This will create a note with giventitle
andbody
. It will be saved in a JSON format in a file namednotes.json
node app.js remove --title="utk"
- This is remove the note of the given titlenode app.js list
- This will list out all the existing/saved title(s) from the JSON filenode app.js read --title="utk"
- This will print the body of the given title