App designed using node JS to add/remove/read/list all the notes.
1.To add a note , you need to pass the note title and body using command.
example : node app.js add --title="Your title" --body="Your body"
2.To remove a note , you need to pass the note title using command.
example : node .\app.js remove --title="Note title"
3.To list all notes, just give the command list.
example : node .\app.js list
4.To read a note, you need to pass the note title using command.
example : node .\app.js read --title="Your title"
To start with the project
use `npm install` to install all dependency
then use any of the above command to use the notes