https://github.com/akshaypx/task-tracker-cli
A simple command line interface (CLI) to track what you need to do, what you have done, and what you are currently working on.
https://github.com/akshaypx/task-tracker-cli
cli node node-cli nodejs task-tracker
Last synced: 3 months ago
JSON representation
A simple command line interface (CLI) to track what you need to do, what you have done, and what you are currently working on.
- Host: GitHub
- URL: https://github.com/akshaypx/task-tracker-cli
- Owner: akshaypx
- Created: 2024-09-06T13:48:40.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T11:41:54.000Z (9 months ago)
- Last Synced: 2025-01-12T08:26:44.040Z (4 months ago)
- Topics: cli, node, node-cli, nodejs, task-tracker
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Steps to run the project-
1. clone repo
2. To add task
```
node index.js add "new task"
```
3. To list all tasks
```
node index.js list
```
To filter tasks by status
```
node index.js list todo
node index.js list in-progress
node index.js list done
```
4. To update task
```
node index.js update 1 "updated task"
```
5. To delete task
```
node index.js delete 1
```
6. To update status
```
node index.js mark-done 1
node index.js mark-in-progress 1
```"https://roadmap.sh/projects/task-tracker"