CLI Todo App With Nodejs
Create New Todo
$ node app.js create --title "Todo Title" --body "Todo Body"
# For more information run
$ node app.js create --helpList Todo
$ node app.js list
# For more information run
$ node app.js list --helpShow Todo
# Pro Tip Get "index" from "list" command
$ node app.js show --index 0
# For more information run
$ node app.js show --helpRemove Todo
$ node app.js remove --index 0
# For more information run
$ node app.js remove --helpToggle Todo Completed Status
$ node app.js Toggle --index 0
# For more information run
$ node app.js Toggle --help