Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 756 Bytes

readme.md

File metadata and controls

33 lines (23 loc) · 756 Bytes

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