Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 801 Bytes

readme.md

File metadata and controls

37 lines (32 loc) · 801 Bytes

Notes APP

a command line utility to manage your notes

this app is built as a practice following the Node.js tutorials by Andrew Maed

How to Use it

  1. clone the App
$ git clone https://github.com/AmrMonier/notes-app.git
  1. install all dependecies
$ npm install
  1. you are good to go

Available command

  1. Adding new note this command take to option the title and the body and it can be executed using the following line titles of the notes are unique
$ node app.js add --title="your title" --body="the body of the note"
  1. Removing a note
$ node app.js remove --title="your title" 
  1. Reading a specific note
 $ node app.js read --title="your title" 
  1. List all notes
$ node app.js list