Skip to content

Radioactive92177/notes_app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note Making APP Using NodeJS

The following is a backend application, which is used to store notes in a json file and perform certain operations in it. It uses yargs for parsing the command line arguments and chalk for coloring the output.


Prerequisites

Software Version
Node v14.14.0 or above
npm v6.14.8 or above

To Run

# Bash Code
npm install # To install the required dependencies

node app.js option --arguments

Available options & their arguments

Options Arguments required
list no argument
add --title="Desired title" --body="Desired body"
remove --title="Title of note to delete"
read --title="Title of the note to read"

Sample Execution

add

node app.js add --title="Shopping" --body="Vegetables,Pens, Condoms"

list

node app.js list

read

node app.js read --title="Shopping"

remove

node remove --title="Shopping"

Feel free to fork or contribute

About

Note making using NODE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published