/notes-app

NodeJS application for notes

Primary LanguageJavaScript

NodeJS application for notes. separate json file which contains notes title and body. same note title can't be added.

This is the application which do the following tasks :

  • Add Note
  • Remove Note
  • List All Notes
  • Read Note By it Title

command for run

node app.js <type> <arg>

Add Note command :

node app.js add --title="title" --body="body"

Remove Note command :

node app.js remove --title="title"

List Note command :

node app.js list 

Add Note command :

node app.js read --title="title"