A simple filesystem-based Todo CLI built with Node.js
npm install @arindam24/todo-cliA simple command-line Todo application built with Node.js.
Manage your tasks directly from the terminal! Todos are stored globally in your current directory.
---
Install globally using npm:
``bash`
npm install -g @arindam24/todo-cli
Install local folder using npm:
`bash`
npm install @arindam24/todo-cli
1. Add a new task:
`bash`
todo add "Your task here"
Output:
`bash`
β
Added: "Learn Node.js"
2. List all tasks with their status:
`bash`
todo list
Output:
`bash`
Your Todos:
1. Learn Node.js β β³ Pending
2. Build CLI project β β Done
3. Write documentation β β³ Pending
3. Mark a task as completed by its number:
`bash`
todo done
todo done 1
Output:
`bash`
π Marked as done: "Learn Node.js"
4. Delete a task by its number:
`bash`
todo delete
todo delete 2
Output:
`bash`
π Deleted: "Build CLI project"
`bash``
git clone https://github.com/Arindam2003/todo-cli
cd todo-cli
npm install