Notes application built using Node.js backend framework.
The application does the following :
- The app can add a new note
node index.js add --title="Node.js" --body="I love Node"
- It can read a note
node index.js read --title="Node.js"
- List all note titles
node index.js list
- Remove a note
node index.js remove --title="Node.js"
After Cloning or downloading the repo, run the below command to install dependencies
npm install
Now, you are good to go 💨