This is a Command line Interface program that helps to manage our daily tasks ☺
Install from https://nodejs.org/en/
git clone https://github.com/Deepakmukka1/Todo-CLI.git
cd Todo-CLI
npm install -g
console.log('Thank you for installing')
Use the todo help
command to see the usage
$ todo help
Usage :-
$ todo add "todo item" # Add a new todo
$ todo ls # See remaining todos
$ todo del NUMBER # Delete a todo
$ todo done NUMBER # Complete a todo
$ todo help # See usage
$ todo report # See the Statistics
Use the ls
command to see all the todos that are not yet complete.
$ todo ls
Use the add
command followed by the item to add an item to the todo.
$ todo add "the thing i need to do"
Use the del
command to remove a todo item by its number.
$ todo del 3
Use the done
command to mark a todo item as completed by its number.
$ todo done 1
Use the report
command to see the list of pending and completed todos.
$ todo report