Build a Notes Application using Node.js. This app is based on command line arguments.
- Add Note
- Remove Note
- List Note
- Read Note
1.Install npm
npm install2.Install yargs
npm install yargs@12.0.23.Add Note
node app.js add --title="Title of your note" --body="Body of your note"4.Remove Note
node app.js remove --title="Title of note which you have to remove"5.List Note
node app.js list 6.Read Note
node app.js read --title="Title of note which you have to read"