{"id":20980272,"url":"https://github.com/ali-sdg90/todo-app","last_synced_at":"2026-04-09T20:06:43.132Z","repository":{"id":65353002,"uuid":"570514387","full_name":"Ali-Sdg90/Todo-App","owner":"Ali-Sdg90","description":"Todo app for CS_Internship","archived":false,"fork":false,"pushed_at":"2023-09-08T15:05:21.000Z","size":235,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T10:16:35.475Z","etag":null,"topics":["css","javascript","knockoutjs","scss","todo-app"],"latest_commit_sha":null,"homepage":"https://ali-sdg90.github.io/Todo-App/","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/Ali-Sdg90.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":"2022-11-25T11:23:46.000Z","updated_at":"2024-01-16T20:45:24.000Z","dependencies_parsed_at":"2025-01-20T06:28:23.031Z","dependency_job_id":"d0eb8333-55ea-40f1-99c0-d075b9e6d16d","html_url":"https://github.com/Ali-Sdg90/Todo-App","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ali-Sdg90/Todo-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Sdg90%2FTodo-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Sdg90%2FTodo-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Sdg90%2FTodo-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Sdg90%2FTodo-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ali-Sdg90","download_url":"https://codeload.github.com/Ali-Sdg90/Todo-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ali-Sdg90%2FTodo-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28061258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-26T02:00:06.189Z","response_time":55,"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":["css","javascript","knockoutjs","scss","todo-app"],"created_at":"2024-11-19T05:17:33.786Z","updated_at":"2025-12-26T21:18:02.051Z","avatar_url":"https://github.com/Ali-Sdg90.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eTodo App🗂\u003c/h1\u003e\n\u003cp\u003e\n    This is a simple JavaScript based Todo app that allows users to add, filter,\n    and clear tasks. The app uses the DOM to manipulate the HTML and\n    localStorage to save the tasks.\n\u003c/p\u003e\n\u003cimg src=\"Assets/readme-img.png\" alt=\"Todo-App-img\" /\u003e\n\u003ch2\u003eGetting Started\u003c/h2\u003e\n\u003cp\u003e\n    To get started, simply clone or download the repository and open the\n    \u003ccode\u003eindex.html\u003c/code\u003e file in your browser. You should be able to see the\n    Todo app interface.\n\u003c/p\u003e\n\u003ch2\u003eFeatures\u003c/h2\u003e\n\u003cul\u003e\n    \u003cli\u003e\n        Add tasks by typing into the input field and clicking the \"Add\" button\n    \u003c/li\u003e\n    \u003cli\u003e\n        Filter tasks by clicking the \"All\", \"Active\", or \"Completed\" buttons\n    \u003c/li\u003e\n    \u003cli\u003eClear all tasks by clicking the \"Clear\" button\u003c/li\u003e\n    \u003cli\u003e\n        Tasks are saved to localStorage, so they will persist even after the\n        browser is closed or refreshed\n    \u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCode Structure\u003c/h2\u003e\n\u003cp\u003e\n    The app uses several variables such as \u003ccode\u003eaddBtn\u003c/code\u003e,\n    \u003ccode\u003etodoCounter\u003c/code\u003e, \u003ccode\u003etaskTasks\u003c/code\u003e,\n    \u003ccode\u003ependingFilter\u003c/code\u003e, \u003ccode\u003eclearAll\u003c/code\u003e, \u003ccode\u003etodoInput\u003c/code\u003e,\n    \u003ccode\u003etodoList\u003c/code\u003e, and \u003ccode\u003elocalTodo\u003c/code\u003e to select different parts\n    of the HTML and manipulate them.\n\u003c/p\u003e\n\u003cp\u003e\n    The app uses an array \u003ccode\u003etodoSaves\u003c/code\u003e to store the tasks and another\n    array \u003ccode\u003efilteredTodoSaves\u003c/code\u003e to store the filtered tasks. The\n    \u003ccode\u003efilterTodoSavesFunc()\u003c/code\u003e function is used to filter the tasks\n    based on the filter mode (\u003ccode\u003eall\u003c/code\u003e, \u003ccode\u003eactive\u003c/code\u003e, or\n    \u003ccode\u003ecompleted\u003c/code\u003e) and the \u003ccode\u003eupdateHTML(addNewTodo)\u003c/code\u003e function\n    is used to update the DOM and refresh the list of tasks.\n\u003c/p\u003e\n\u003ch2\u003eSteps\u003c/h2\u003e\n\u003ctable\u003e\n    \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eSteps\u003c/th\u003e\n            \u003cth\u003eGithub\u003c/th\u003e\n            \u003cth\u003eJSFiddle\u003c/th\u003e\n            \u003cth\u003eLive Demo\u003c/th\u003e\n            \u003cth\u003eShowcase Video\u003c/th\u003e\n        \u003c/tr\u003e\n    \u003c/thead\u003e\n    \u003ctbody\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eStep 3 (base file)\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://github.com/Ali-Sdg90/Todo-App/tree/2471d1bfbd34de78b451684a90d3c6db4ac20350\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://jsfiddle.net/Ali_Sdg90/v60okbum/\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e---\u003c/td\u003e\n            \u003ctd\u003eComing soon...\u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eStep 4 (todo btns + SCSS)\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://github.com/Ali-Sdg90/Todo-App\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://jsfiddle.net/Ali_Sdg90/k4Lwxare/\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e---\u003c/td\u003e\n            \u003ctd\u003eComing soon...\u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eStep 5 (knockout.js)\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://github.com/Ali-Sdg90/Todo-App-KnockoutJS\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://jsfiddle.net/Ali_Sdg90/v7nac15g/4/\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://ali-sdg90.github.io/Todo-App-KnockoutJS/\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003eComing soon...\u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eStep 6 (localStorage)\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://github.com/Ali-Sdg90/Todo-App\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://jsfiddle.net/Ali_Sdg90/tz105ux4/1/\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://ali-sdg90.github.io/Todo-App/\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003eComing soon...\u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003eStep 6 (Firebase)\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://github.com/Ali-Sdg90/Todo-App-Firebase\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://jsfiddle.net/Ali_Sdg90/bfLrwtxg/2/\" target=\"_new\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003e\u003ca href=\"https://ali-sdg9093-todo-app.web.app/\"\u003eLink\u003c/a\u003e\u003c/td\u003e\n            \u003ctd\u003eComing soon...\u003c/td\u003e\n        \u003c/tr\u003e\n    \u003c/tbody\u003e\n\u003c/table\u003e\n\u003cp\u003eEnjoy using the app❤️\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fali-sdg90%2Ftodo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fali-sdg90%2Ftodo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fali-sdg90%2Ftodo-app/lists"}