/notes-app

A NodeJS notes app for managing notes in a JSON format

Primary LanguageJavaScript

notes-app

A NodeJS notes app for managing notes in a JSON format

Installing dependencies

To install dependencies(node_modules) Run npm install command in the terminal.

Adding a note

To add a note to the app Run node app.js add --title="<title>" --body="" command in the terminal.

Removing a note

To remove the note from the JSON file Run node app.js remove --title="<title>" command in the terminal.

Listing all the notes in the terminal

To list all the title of all the stored notes Run node app.js list command in the terminal.

Reading a single note

To read a note and display it's content in the terminal Run node app.js read --title="<title>" command in the terminal.