{"id":25938055,"url":"https://github.com/muke78/task-tracker-cli","last_synced_at":"2026-06-19T18:33:11.342Z","repository":{"id":275108770,"uuid":"925083714","full_name":"muke78/task-tracker-cli","owner":"muke78","description":"Backend from CLI of a task tracker","archived":false,"fork":false,"pushed_at":"2025-01-31T08:36:18.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T03:34:03.934Z","etag":null,"topics":["cli","cli-app","fs","javascript","path","todolist"],"latest_commit_sha":null,"homepage":"https://roadmap.sh/projects/task-tracker","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/muke78.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-31T07:35:17.000Z","updated_at":"2025-01-31T08:36:22.000Z","dependencies_parsed_at":"2025-01-31T09:20:21.104Z","dependency_job_id":"79cbe56e-6289-401d-9188-006763b40307","html_url":"https://github.com/muke78/task-tracker-cli","commit_stats":null,"previous_names":["muke78/task-tracker-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/muke78/task-tracker-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muke78%2Ftask-tracker-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muke78%2Ftask-tracker-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muke78%2Ftask-tracker-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muke78%2Ftask-tracker-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/muke78","download_url":"https://codeload.github.com/muke78/task-tracker-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muke78%2Ftask-tracker-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34544404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","cli-app","fs","javascript","path","todolist"],"created_at":"2025-03-04T03:32:30.930Z","updated_at":"2026-06-19T18:33:11.326Z","avatar_url":"https://github.com/muke78.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Description\n\nTask tracker cli is a project used to track and manage your tasks. In this task, you will build a simple command line interface (CLI) to track what you need to do, what you have done, and what you are currently working on. This project will help you practice your programming skills, including working with the filesystem, handling user inputs, and building a simple CLI application.\n\n## Table of Contents\n\n- [Project link](#project-link)\n- [Requirements](#requirements)\n- [Task Properties](#task-properties)\n- [Commands](#commands)\n- [Usage](#usage)\n- [Screenshots](#screenshots)\n- [Contact](#contact)\n\n## Project link\n\n[https://roadmap.sh/projects/task-tracker](https://roadmap.sh/projects/task-tracker)\n\n## Requirements\n\nThe 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:\n\n- Add, Update, and Delete tasks\n- Mark a task as in progress or done\n- List all tasks\n- List all tasks that are done\n- List all tasks that are not done\n- List all tasks that are in progress\n\nHere are some constraints to guide the implementation:\n\n- You can use any programming language to build this project.\n- Use positional arguments in command line to accept user inputs.\n- Use a JSON file to store the tasks in the current directory.\n- The JSON file should be created if it does not exist.\n- Use the native file system module of your programming language to interact with the JSON file.\n- Do not use any external libraries or frameworks to build this project.\n- Ensure to handle errors and edge cases gracefully.\n\n## Task Properties\n\nEach task should have the following properties:\n\n- `id`: A unique identifier for the task\n- `description`: A short description of the task\n- `status`: The status of the task (`todo`, `in-progress`, `done`)\n- `createdAt`: The date and time when the task was created\n- `updatedAt`: The date and time when the task was last updated\n\n## Commands\n\nThe commands are executed from the CLI with `npm run` or `yarn dev` with one of the following arguments that takes\n\n- `add`: Add a task\n- `edit`: Edit a task \u003ctask_id\u003e\n- `delete`: Delete a task \u003ctask_id\u003e\n- `complete`: Mark a task as completed \u003ctask_id\u003e\n- `not-complete`: Mark a task as not completed \u003ctask_id\u003e\n- `list`: List the tasks there are\n- `list-progress`: List tasks in progress\n- `list-not-done`: List tasks not completed\n- `list-done`: List completed tasks\n- `help`: Show command help box\n\n## Usage\n\nHere are the basic commands to use the CLI Task Manager Tool:\n\n```bash\n    npm run add \"The weekend\"\n    npm run edit \u003ctask_id\u003e \"Argument\"\n    npm run delete \u003ctask_id\u003e\n    npm run complete \u003ctask_id\u003e\n    npm run not-complete \u003ctask_id\u003e\n    npm run help\n```\n\n## Screenshots\n\n![alt text](image-1.png)\n\n## Contact\n\nIf you have any questions or suggestions, feel free to contact us:\n\n- Author name: [Erick Gonzalez](https://github.com/muke78)\n- Email : \u003cerickm.gonzalez.rivera@gmail.com\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuke78%2Ftask-tracker-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuke78%2Ftask-tracker-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuke78%2Ftask-tracker-cli/lists"}