Clone the repository and run npm install in the repo folder.
Make sure you have installed nodejs on your machine.
With several terminal commands you can create, remove, read and list your notes.
By adding a note for the first time the app will create a notes.json file where your notes will be stored.
Terminal:
node app.js add --title="Your note title" --body="Your note body"
Terminal:
node app.js remove --title="note title to remove"
Terminal:
node app.js read --title="note title to read"
Terminal:
node app.js add list