1.3.0 • Published 2 years ago
krish-todos-cli v1.3.0
What will be the commands for this todos cli tool?
- todos list: this will list the tasks in the user’s to-do list
- todos add: this will add a new task to the user’s to-do list
- todos mark-done: this will mark specific tasks or all tasks as done in the list
How are we planning to store the todos
- They will be stored locally
- The key will be todo-list which will be an array of todo objects
- Each object will follow this format: {text, done}
- Here, text is the todo task (string)
- done is to mark whether the task is completed or not (boolean)