Skip to content

PatMiracle/task-tracker-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Tasks Tracker CLI

This project is one of the beginners backend project in roadmap.sh.

See also the project description.

How to use

Make sure you have node installed.

The list of commands and their usage is given below:

# Adding a new task
node task add "Buy groceries"
# Output: Task added successfully (ID: 1)

# Updating and deleting tasks
node task update 1 "Buy groceries and cook dinner"
node task delete 1

# Marking a task as in progress or done
node task mark-in-progress 1
node task mark-done 1

# Listing all tasks
node task list

# Listing tasks by status
node task list done
node task list todo
node task list in-progress

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published