It is a simple application created in JS language using Node.js Framework. It helps the user to save a note and perform various actions listed below:
Note: All these actions are performed using command line arguments either in terminal or cmd according to your operating system.
- For adding a note:
$node apps.js add --title="title_name" --body="content_regarding the title" - For removing a note:
$node apps.js remove - For listing out the total number of notes:
$node apps.js list - For reading a particular note:
$node apps.js read --title="title_of_the_particular_note_that_you_want_to_read"
Users can also type '$node apps.js preferred_action_name --help' for information related to the actions.