A fast and simple terminal-based todo manager built with Bun and SQLite.
- 📝 Quick todo creation with priority levels
- ✨ Simple alias system for easy todo management
- 🎯 Priority-based sorting (high, medium, low)
- ✅ Toggle todo completion
- 🗑️ Delete todos
- 📋 List all todos with status and timestamps
To install dependencies:
bun install# Add a new todo with priority
terdo -a "Buy milk" -p high
# List all todos
terdo -l
# Toggle todo completion (using alias)
terdo -c buy01
# Delete a todo
terdo -d buy01
# Show help
terdo -hTo run the development version:
bun run src/index.tsTo build the executable:
bun run buildMIT License - see LICENSE file for details.