Keep your notes.
npm install
| Command | Description |
|---|---|
| app.js add | Add a new note |
| app.js remove | Remove a note |
| app.js list | List your notes |
| app.js read | Read a note |
| Attributes | Description | Required |
|---|---|---|
| --title | A title of note | Yes |
| --body | A body of note | Yes |
- Add a note
node app.js add --title='My Awesome Note' --body="Some body"
- List notes
node app.js list
- Remove a note
node app.js remove --title='My Awesome Note'
- Show a note
node app.js read --title='My Awesome Note'