{"id":25138780,"url":"https://github.com/davidyslu/vue2ts-starter","last_synced_at":"2026-02-19T19:32:44.256Z","repository":{"id":40833554,"uuid":"263954351","full_name":"davidyslu/Vue2TS-Starter","owner":"davidyslu","description":"Starter repository for using Vue 2 and TypeScript","archived":false,"fork":false,"pushed_at":"2023-01-07T18:12:05.000Z","size":29214,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-15T02:44:04.717Z","etag":null,"topics":["prettier","starter-project","typescript","vue","yarn"],"latest_commit_sha":null,"homepage":"","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}},"created_at":"2020-05-14T15:34:47.000Z","updated_at":"2021-10-28T16:56:04.000Z","dependencies_parsed_at":"2023-02-07T20:01:35.974Z","dependency_job_id":null,"html_url":"https://github.com/davidyslu/Vue2TS-Starter","commit_stats":null,"previous_names":["davidyslu/vue2ts-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/davidyslu/Vue2TS-Starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FVue2TS-Starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FVue2TS-Starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FVue2TS-Starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FVue2TS-Starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davidyslu","download_url":"https://codeload.github.com/davidyslu/Vue2TS-Starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidyslu%2FVue2TS-Starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013604,"owners_count":26085389,"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-10-13T02:00:06.723Z","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":["prettier","starter-project","typescript","vue","yarn"],"created_at":"2025-02-08T17:40:24.782Z","updated_at":"2025-10-13T04:05:20.352Z","avatar_url":"https://github.com/davidyslu.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VueTS-Starter\n\nThis repository is my starter repository for Vue and TypeScript\n\n---\n## Description\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/VueTS-Starter/\n   ```\n2. After cloning, change the your current directory into the repository and setup the project\n   ```bash\n   $ cd VueTS-Starter/ \u0026 npm install\n   ```\n   - The command `npm 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   $ npm run 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 VueTS-Starter\n\n### Implementation\n\n1. Make sure you have already install [Node.js](https://nodejs.org/en/)\n2. Install Vue-CLI for initializing the project\n    ```bash\n    $ npm install -g \"@vue/cli\"\n    ```\n3. Create a Vue project via Vue-CLI\n    ```bash\n    $ vue create vuets-starter\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    * This will take a while for initializing the project\n    * You will get the following messages if initialized succeed.\n        ```bash\n        🎉 Successfully created project todolist.\n        👉 Get started with the following commands:\n\n        $ cd todolist\n        $ npm run serve\n        ```\n        \u003e **NOTES:** See [Configuration Reference](https://cli.vuejs.org/config/).\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    $ npm run 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   $ npm run 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/[GITHUB_ACCOUNT]/VueTS-Starter.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## Contributor\n\n\u003e **NOTICE:** You can follow the contributing process [CONTRIBUTING.md] to join me. I am very welcome any issue!\n\n* [David Lu](https://github.com/yungshenglu)\n\n---\n## License\n\n[GNU GENERAL PUBLIC LICENSE Version 3](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidyslu%2Fvue2ts-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavidyslu%2Fvue2ts-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidyslu%2Fvue2ts-starter/lists"}