A handy app for devs to track to do items within a project/repo. todos saved in a json file within the project.
npm install todo-cli-kaylakantolaA command line interface used to track to do items in a software project. Use the cli to create to-do items, list to-do items, mark a to-do item as complete, and remove a to-do item.
```
npm i todo-cli-kaylakantola -g
##Usage
``
mk dir my-project
cd my-project
todo init
todo add put on some slippers
todo add drink some coffee
todo add read a book
todo ls
``
todo add
example
``
todo add feed the cat
``
todo ls
``
todo check
example
``
todo check 2
``
todo rm
example
``
todo rm 1
Creates a todos.json file within the current directory. Use when you wish to start a new list. If todos.json already exists,todo init will not do anything.
```
todo init
##Future Features
- Show percent of to-dos completed
- Assign a to-do to a person
- Record the date and time completed
- Export the to-do items to github as issues
- Export to trello as a list