cli-todolist
v1.0.2
Published
Lightning fast TodoList
Downloads
14
Readme
CLI-Todo-App First Task
A simple CommandLine ToDo App to keep track of your schedule
Installation
run "npm install to install dependencies"
Dependencies Used
- Yargs: For Handling App commands
- Chalk.js: For Styling Command Line Outputs
Commands for Todo App
add / a [to add a new ToDo] e.g "node index.js a --title "Eat Breakfast""
list / l [to list all ToDo entries] e.g "node index.js l"
view / v [to view a single ToDo Entry] e.g "node index.js v --index i //(i is index number)"
remove / r [to delete individual entry] e.g "node index.js r --index i //(i is index number)"
deleteAll / d [to delete all ToDo Entries] e.g "node index.js d"
toggle / t [To indicate task Completion] e.g "node index.js t --index i //(i is index number)"
