Skip to content

A simple CLI app to track your tasks and manage your to-do list.

Notifications You must be signed in to change notification settings

laktosterror/task-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

task-cli

A simple CLI app written in C# to track your tasks and todos.

Main goals for this exercise was to practice code structure, variable/method naming and data persistence.

Requirements

The application should run from the command line, accept user actions and inputs as arguments, and store the tasks in a JSON file. The user should be able to:

  • Add, Update, and Delete tasks
  • Mark a task as in progress or done
  • List all tasks
  • List all tasks that are done
  • List all tasks that are not done
  • List all tasks that are in progress

Constraints to guide the implementation:

  • You can use any programming language to build this project.
  • Use positional arguments in command line to accept user inputs.
  • Use a JSON file to store the tasks in the current directory.
  • The JSON file should be created if it does not exist.
  • Use the native file system module of your programming language to interact with the JSON file.
  • Do not use any external libraries or frameworks to build this project.
  • Ensure to handle errors and edge cases gracefully.

Project idea from: https://roadmap.sh/projects/task-tracker

About

A simple CLI app to track your tasks and manage your to-do list.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages