Notes appication build using the Node JS. The application performs the basic operations like Adding a new note,Reading a note,Removing the perticular note and Listing the all added notes. The application is aslo enabled with the help command.
Sample Commands:
1.Adding a new note:
node app.js add --title="one" --body="This is a body of one."
2.Reading a note:
node app.js read --title="one"
3.Removing the perticular note:
node app.js remove --title="one"
4.Listing the all added notes:
node app.js list
5.For displaying the help:
node app.js --help