This is a simple Node.js app used for note-taking. It has the following features:
- Adding a note
- Removing a note
- Reading a note
- Listing all the notes
npm install
node app.js add --title="Books" --body="Inferno, Karna's Wife"
node app.js read --title="Books"
node app.js list
node app.js remove --title="Books"