Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 498 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 498 Bytes

nodejs-notes-app

NodeJs application for taking notes from the terminal.

  • Add a Note
  • List all Notes
  • Search a Note
  • Remove a Note

Installation and use

Clone the repo

$ cd note-node

$ npm install

  • To Add a new Note

node Add -t="Title of the Note" -b="Body of the note"

  • To list all Notes

node list

  • To Read a Note

node read -t="Title of the Note"

  • To remove a Note

node remove -t="Title of the Note"

  • For help execute

$ node app.js --help