@ada1888/node-todo-cli
v1.0.0
Published
A simple command-line todo application
Downloads
93
Readme
node-todo-cli
A simple command-line todo application built with Node.js.
Installation
npm install -g node-todo-cliUsage
Add a todo
todo add "Buy milk" -p high -d 2024-12-31 -t "shopping,life"Options:
-p, --priority <priority>- Priority: high, medium, low (default: medium)-d, --due <date>- Due date (YYYY-MM-DD)-t, --tag <tags>- Tags (comma-separated)
List todos
todo list
todo list --all # Include completed todos
todo list --tag work # Filter by tag
todo list --priority high # Filter by priorityMark as completed
todo done 1Remove a todo
todo remove 1
# or
todo rm 1List all tags
todo tagsData Storage
All todos are stored in ~/.todo-cli/todos.json.
License
MIT
