A simple command-line interface (CLI) application for managing notes. Add notes, list them, and remove them, all stored in a JSON file.
- Add Notes:
node app.js add "Your note content"
- List Notes:
node app.js list
to see all existing notes. - Remove Notes:
node app.js remove "Note content"
to delete a matching note.
-
Install Node.js:
Ensure you have Node.js installed. -
Clone the Repository:
git clone https://github.com/jcriz99/node-notes.git cd node-notes