Simple todo list command line interface
npm install @chris-lewis/todo-cli
Simple todo list command line interface. Manages a list of todo items,
displaying them with date.
* Install
* Commands
* Configuration
Install with npm:
```
npm i -g @chris-lewis/todo-cli
Then run with todo.
> Most commands have shorter versions available, such as 'a' in place of 'add'.
Add a new item with add:
``
todo add Review login page PR
List current items with list:
``
todo list
A history of the 10 most recently completed tasks will be shown on list.
> --no-recent can be used to hide recently completed items.
Update an item by index in the list with update:
``
todo update 0
You will be prompted for the updated todo text.
Delete an item by index in the list with done to mark it as complete:
``
todo done 0
The display of colors for overdue items listed is configurable in days, after
which time they will be displayed with a red highlight.
```
todo config overdueDays $days