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 --help
List Todo
$ node app.js list
# For more information run
$ node app.js list --help
Show Todo
# Pro Tip Get "index" from "list" command
$ node app.js show --index 0
# For more information run
$ node app.js show --help
Remove Todo
$ node app.js remove --index 0
# For more information run
$ node app.js remove --help
Toggle Todo Completed Status
$ node app.js Toggle --index 0
# For more information run
$ node app.js Toggle --help