nodejs-notes-app

Simple notes app with node js CLI, notes are saved in a json file

Usage:

node app.js add --title="note1" --body="content here of the note1"
node app.js add --title="note2" --body="content here of the note2"
node app.js list
node app.js read --title="note1"
node app.js remove --title="note1"