A simple and lightweight CLI-based to-do list manager for tracking tasks efficiently.
🔗 NPM Package: Devtrack CLI on NPM
✅ Add new tasks
✅ View all tasks
✅ View only completed tasks
✅ Mark tasks as completed
✅ Remove tasks
You can run Devtrack directly using npx
(no installation required):
npx devtrack-cli
Or install it globally:
npm install -g devtrack-cli
1️⃣ Add a new task
npx devtrack-cli add "Complete MERN project"
2️⃣ View all tasks
npx devtrack-cli list
3️⃣ View completed tasks
npx devtrack-cli completed
4️⃣ Mark a task as completed
npx devtrack-cli done <taskNumber>
Example:
npx devtrack-cli done 1
5️⃣ Remove a task
npx devtrack-cli remove <taskNumber>
Example:
npx devtrack-cli remove 1
This project is licensed under the MIT License.
Developed by Sahil – Connect with me at sahilportfolio.