a command line utility to manage your notes
this app is built as a practice following the Node.js tutorials by Andrew Maed
- clone the App
$ git clone https://github.com/AmrMonier/notes-app.git
- install all dependecies
$ npm install
- you are good to go
- 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"
- Removing a note
$ node app.js remove --title="your title"
- Reading a specific note
$ node app.js read --title="your title"
- List all notes
$ node app.js list