{"id":19228228,"url":"https://github.com/capitec/template-pwa-vue","last_synced_at":"2026-03-01T11:32:51.170Z","repository":{"id":154882847,"uuid":"624364118","full_name":"capitec/template-pwa-vue","owner":"capitec","description":"PWA starter template for Vue-based SPA development.","archived":false,"fork":false,"pushed_at":"2024-01-11T10:48:15.000Z","size":492,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T10:41:24.856Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/capitec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2023-04-06T09:56:16.000Z","updated_at":"2024-08-18T15:09:37.000Z","dependencies_parsed_at":"2023-11-07T12:23:21.987Z","dependency_job_id":"a7e17f90-8cee-4711-a90b-cce4074e86ba","html_url":"https://github.com/capitec/template-pwa-vue","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/capitec/template-pwa-vue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capitec%2Ftemplate-pwa-vue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capitec%2Ftemplate-pwa-vue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capitec%2Ftemplate-pwa-vue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capitec%2Ftemplate-pwa-vue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/capitec","download_url":"https://codeload.github.com/capitec/template-pwa-vue/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capitec%2Ftemplate-pwa-vue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29968483,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T10:55:55.490Z","status":"ssl_error","status_checked_at":"2026-03-01T10:55:55.175Z","response_time":124,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-09T15:27:14.068Z","updated_at":"2026-03-01T11:32:51.145Z","avatar_url":"https://github.com/capitec.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nProgressive Web App (PWA) starter template for [Vue](https://vuejs.org/)-based Single-page application (SPA) development, leveraging various [Omni](https://github.com/capitec?q=omni-) libraries.\n\n# Usage\n\n1️⃣ \u0026nbsp; Create a new [repository from this template](https://github.com/capitec/template-pwa-vue/generate) (or fork) and clone locally:\n\n```bash\ngit clone https://github.com/{your-repo-name}.git\ncd {your-repo-name}\n```\n\n2️⃣ \u0026nbsp; Restore all package dependencies:\n\n```bash\nnpm i\n```\n\n3️⃣ \u0026nbsp; Open it in VS Code:\n\n```bash\ncode .\n```\n\n# Scripts\nThe following NPM scripts within `package.json` should be noted:\n\n- `serve` - Launches Vite's dev server.\n- `build` - Bundles code and copies artifacts for production from the `src` directory to the `dist` directory.\n- `preview` - Launches a simple web server, serving the `dist` directory (Remember to `build` first! 🎗️).\n- `test` - Launches the Playwright test runner \u0026 executes all tests within `tests` directory.\n- `format` - Runs the Prettier formatter, applying format updates where necessary.\n- `lint`- Runs the ESLint analyzer, applying code updates where necessary.\n\n\n# Run End-to-End Tests with [Playwright](https://playwright.dev)\n\n```sh\n# Install browsers for the first run\nnpx playwright install\n\n# When testing on CI, must build the project first\nnpm run build\n\n# Runs the end-to-end tests\nnpm run test\n# Runs the tests only on Chromium\nnpm run test -- --project=chromium\n# Runs the tests of a specific file\nnpm run test -- tests/example.spec.ts\n# Runs the tests in debug mode\nnpm run test -- --debug\n```\n\n# Showcased Features\n|     Feature    |  Availability | Description |\n|-------------------------------|-----|-----------------------------------------------------------------|\n|    Components                 | ✅  | [Omni Components](https://github.com/capitec/omni-components)   |\n|    Component Intellisense     | ❌  | Not available                                                   |\n|    Routing                    | ✅  | [Vue Router](https://router.vuejs.org/)                         |\n|    VS Code Debugging          | ❌  | Not available                                                   |\n|    Tests                      | ✅  | [Playwright](https://playwright.dev/)              |\n|    Serve                      | ✅  | [Vite](https://vitejs.dev/)                        |\n|    Build                      | ✅  | [Vite](https://vitejs.dev/)                        |\n|    Build chunking             | ✅  | [vite.config.ts](./vite.config.ts)                                   |\n|    Preview built output       | ✅  | [Vite](https://vitejs.dev/)                        |\n|    Formatting                 | ✅  | [Prettier](https://prettier.io/)                   |\n|    Linting                    | ✅  | [ESLint](https://eslint.org/)                      |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapitec%2Ftemplate-pwa-vue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcapitec%2Ftemplate-pwa-vue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapitec%2Ftemplate-pwa-vue/lists"}