Node notes is a Command Line Interface Application wich means that it works in a terminal like the old school programs without GUI.
> node app.js add --title="toDo" --body="kill humans"
or
> node app.js add -t="toDo later" -b="read comic books"
Yo can use the full arguments (--title) or their flag version (-t), both works the same in any command.
> node app list
> node app.js read --title="toDo"
> node app.js remove --title="toDo"
> node app.js --help
You may replace add with any other command (list, remove, read)
> node app.js add --help