{"id":25138781,"url":"https://github.com/davidyslu/todo","last_synced_at":"2026-02-09T02:05:00.608Z","repository":{"id":39174264,"uuid":"252690477","full_name":"davidyslu/TODO","owner":"davidyslu","description":"Simple useful TODO! :tada:","archived":false,"fork":false,"pushed_at":"2023-03-04T10:25:01.000Z","size":5362,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-15T02:44:06.316Z","etag":null,"topics":["ant-design","typescript","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://yungshenglu.github.io/TODO","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davidyslu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2020-04-03T09:40:10.000Z","updated_at":"2024-11-19T06:32:25.000Z","dependencies_parsed_at":"2024-10-28T15:37:05.176Z","dependency_job_id":null,"html_url":"https://github.com/davidyslu/TODO","commit_stats":null,"previous_names":["davidyslu/todo","yungshenglu/todo"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/davidyslu/TODO","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FTODO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FTODO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FTODO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FTODO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davidyslu","download_url":"https://codeload.github.com/davidyslu/TODO/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FTODO/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29254306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T01:52:29.835Z","status":"online","status_checked_at":"2026-02-09T02:00:09.501Z","response_time":56,"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":["ant-design","typescript","vue","vuejs"],"created_at":"2025-02-08T17:40:25.129Z","updated_at":"2026-02-09T02:05:00.590Z","avatar_url":"https://github.com/davidyslu.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TODO!\n\n![](src/assets/TODO!-demo.png)\n\nThis repository is my practice to implement a simple TODO-list in Vue/Vuex with TypeScript. For now, we have a beta version (v1.0) that enables users to add, remove, edit, and check your items in the TODO-list. Besides, we also provide a very simple classification for the status of each item (i.e, todo, done)\n\nBesides, I also developed [desktop version](https://github.com/yungshenglu/TODO-desktop) for TODO! using Electron. :tada:\n\n\u003e **HINT:** If you have any questions, please feel free to ask me.\n\n---\n\n## Descriptions\n\n### Execution\n\n1. To run our production, you need to clone our project first\n   ```bash\n   $ git clone https://github.com/yungshenglu/Vue-TodoList/\n   ```\n2. After cloning, change the your current directory into the repository and setup the project\n   ```bash\n   $ cd Vue-TodoList/ \u0026 yarn install\n   ```\n   - The command `yarn install` will install some necessary packages for this project\n   - It will take few second for running above command\n3. Compiles and hot-reloads for development\n   ```bash\n   $ yarn serve\n   ```\n   - It will take few second for running above command\n   - You won't get any error messages if running successful\n4. Congratulation! you can open your browser to `http://localhost:8080` and see our TODO-list\n\n### Implementation\n\n#### Prerequisite\n\n1.  Make sure you have already install Node.js\n2.  Install Vue-CLI for initializing the project\n    ```bash\n    $ yarn global add \"@vue/cli\"\n    ```\n3.  Create a Vue project via Vue-CLI\n\n    ```bash\n    $ vue create vue-todolist\n    # You will need to do some settings below if succeed\n    Vue CLI v4.2.3\n    ? Please pick preset: Manually select features\n    ? Check the feautures needed for your projects: TS, Vuex, CSS Pre-processors, Linter\n    ? Use class-style component syntax? Yes\n    ? Use Babel alognside Typescript? No\n    ? Pick a CSS pre-processor? Sass/SCSS (with dart-sass)\n    ? Pick a linter / formatter config: TSLint\n    ? Pick a additional lint feautres: Lint on save\n    ? Where do you prefer placing config for Babel, ESLint, etc.? In dedicated config files\n    ? Save this as a preset for future projects? No\n    ...\n    ```\n\n    - This will take a while for initializing the project\n    - You will get the following message if initialized succeed.\n\n      ````bash\n      🎉 Successfully created project todolist.\n      👉 Get started with the following commands:\n\n          $ cd todolist\n          $ yarn serve\n\n          ```\n\n      \u003e **NOTES:** See [Configuration Reference](https://cli.vuejs.org/config/).\n      ````\n\n4.  Change directory to your project and show all files\n    ```bash\n    $ cd Vue-TodoList/ \u0026 ls\n    README.md         package-lock.json public            tsconfig.json\n    node_modules      package.json      src               tslint.json\n    ```\n5.  How to run the project on local machine?\n    ```bash\n    $ yarn serve\n    # You will NOT get any error meesage if compiled succeed\n    ```\n    - If compiled succeed, you can open your browser to `http://localhost:8080`\n\n#### Deploy on GitHub Pages\n\n1. To deploy our production, make sure your current directory is the root of this repository and run the following command\n   ```bash\n   $ yarn build\n   ```\n   - It will take few second for ruuning above command\n   - You will get a new folder `dist/` after building successful\n   - You don't need to push `dist/` on your GitHub because `dist/` has already been ignored by git via `.gitignore`\n2. Before deploying, make sure you have already created your repository on GitHub\n3. Change the directory into `dist/` and create a new branch for deploying on your GitHub Pages\n   ```bash\n   $ cd dist/\n   # You need to initialize git due to dist/ is ignored as default\n   $ git init\n   $ git add -A\n   $ git commit -m \"Deploy on GitHub Pages\"\n   # Deploy to your GitHub repository on branch \"gh-pages\"\n   $ git push -f https://github.com/yungshenglu/TODO.git master:gh-pages\n   $ cd -\n   ```\n4. After deploying, you can find it on your GitHub with branch `gh-pages`\n5. Open setting page of your repository and move to the section `GitHub Pages`\n6. Select `Source` of your GitHub Pages to `gh-pages branch`\n7. Congratulation! you can open your browser to the link of your GitHub Pages\n\n---\n\n## Contributor\n\n\u003e **NOTICE:** You can follow the contributing process [CONTRIBUTING.md](CONTRIBUTING.md) to join me. I am very welcome for any issue!\n\n- [David Lu](https://github.com/yungshenglu)\n\n---\n\n## License\n\n[GNU GENERAL PUBLIC LICENSE Version 3](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidyslu%2Ftodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavidyslu%2Ftodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidyslu%2Ftodo/lists"}