An open API service indexing awesome lists of open source software.

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.

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"