1.3.1 • Published 3 years ago
@chris-lewis/todo-cli v1.3.1
todo-cli
Simple todo list command line interface. Manages a list of todo items, displaying them with date.
Install
Install with npm:
npm i -g @chris-lewis/todo-cliThen run with todo.
Commands
Most commands have shorter versions available, such as 'a' in place of 'add'.
Add a new item
Add a new item with add:
todo add Review login page PRList current items
List current items with list:
todo listA history of the 10 most recently completed tasks will be shown on list.
--no-recentcan be used to hide recently completed items.
Update an item
Update an item by index in the list with update:
todo update 0 Merge login page PR after QADelete an item
Delete an item by index in the list with done to mark it as complete:
todo done 0Configuration
Overdue times
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