/node-cli-note-app

CLI based notes app with create, read, delete and update

Primary LanguageJavaScript

CLI Based Notes APP

This app is for creating Notes using CLI and save that note in a file locally.

It can perform these tasks.

1. Create a new Notes
2. Update existing Notes
3. Delete existing Notes
4. List all Notes

Commands to use this APP

To list all no

node app list

To create a new note

node app add --title="guide" --body="this is a guide"

To read a note

node app read --title="note title"

To remove a note

node app remove --title="note title"

Run Locally

Clone the project

  git clone https://github.com/IamBukhari/node-cli-note-app.git

Go to the project directory

  cd my-project

Install dependencies

  npm install

Perform Commands listed above

Tech Stack

Node, Yargs

Authors