My first application using Nodejs.
It is a simple command line application which provides functionalities like Add, Remove, List and Read notes.
It stores data in a JSON file
Chalk and Yargs
node app.js add --tittle='Tittle of Note' --body='Body of the Note'
node app.js remove --tittle='Tittle of Note'
node app.js list
node app.js read --tittle='Tittle of Note'