# First Node.js application

-> Basic notes keeping application with four functionalities(run on your command line) :
  1. Add notes
  2. Delete notes
  3. List notes
  4. Read notes
  
 -> To add a note --> node app.js add --title="title of new note" --body ="note body" 
 
 -> To delete a note --> node app.js delete --title="title of note to be deleted"
 
 -> To list a note --> node app.js list
 
 -> To read a note --> node app.js read --title="title of note to read"