{"id":23988732,"url":"https://github.com/vulppi-dev/sveltekit-boilerplate","last_synced_at":"2025-07-29T12:40:33.009Z","repository":{"id":228971922,"uuid":"774895094","full_name":"vulppi-dev/sveltekit-boilerplate","owner":"vulppi-dev","description":"Sveltekit+Tailwindcss + Storybook +Tests(Unit, Components, Integration)","archived":false,"fork":false,"pushed_at":"2024-03-26T10:36:05.000Z","size":163,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T03:12:52.956Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/vulppi-dev.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,"zenodo":null}},"created_at":"2024-03-20T11:49:04.000Z","updated_at":"2024-03-23T22:04:03.000Z","dependencies_parsed_at":"2025-07-29T12:40:32.214Z","dependency_job_id":null,"html_url":"https://github.com/vulppi-dev/sveltekit-boilerplate","commit_stats":null,"previous_names":["vulppi-dev/sveltekit-boilerplate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vulppi-dev/sveltekit-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vulppi-dev%2Fsveltekit-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vulppi-dev%2Fsveltekit-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vulppi-dev%2Fsveltekit-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vulppi-dev%2Fsveltekit-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vulppi-dev","download_url":"https://codeload.github.com/vulppi-dev/sveltekit-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vulppi-dev%2Fsveltekit-boilerplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267687767,"owners_count":24128007,"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-07-29T02:00:12.549Z","response_time":2574,"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":[],"created_at":"2025-01-07T16:15:17.394Z","updated_at":"2025-07-29T12:40:32.986Z","avatar_url":"https://github.com/vulppi-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SvelteKit Boilerplate\n\nThis boilerplate was created to make easy create your first SvelteKit project\n\n## Libraries and Tools\n\n- **Testing:**\n  - Unit tests with Vitest (tests in the `test` or `src` folder with the name `*.unit.(test|spec).ts`)\n  - Component tests with Playwright-CT (tests in the `src` folder parallel to the component with the name `*.comp(onent)?.(test|spec).ts`)\n  - Integration tests with Playwright (tests in the `test` folder with the name `*.int.(test|spec).ts`)\n- **Documentation:**\n  - Components with Storybook (`.stories.(ts|svelte)` files next to the component)\n- **Styling:**\n  - TailwindCSS with custom classes (`cluster`, `stack`, `switcher` and `switcher-threshold`)\n- **Validation:**\n  - Valibot for object validation\n- **Internationalization:**\n  - Svelte-i18n for text translation\n\n## Project Structure\n\n```\n├─ node_modules/\n├─ src/\n│  ├─ lib/\n│  │  ├─ components/\n│  │  │  ├─ ...\n│  │  │  └─ MyComponent\n│  │  │     ├─ MyComponent.svelte\n│  │  │     ├─ MyComponent.comp.test.ts\n│  │  │     └─ MyComponent.stories.svelte\n│  │  └─ locales/\n│  ├─ routes/\n│  │  ├─ ...\n│  │  ├─ +layout.svelte\n│  │  └─ +page.svelte\n│  └─ ...\n├─ test/\n│  ├─ ...\n│  └─ api.unit.test.ts\n├─ package.json\n├─ README.md\n├─ svelte.config.js\n├─ vite.config.ts\n└─ ...\n```\n\n## Development Standards\n\n- **Testing:**\n  - Use Vitest for unit tests.\n  - Use Playwright for component and integration tests.\n  - Follow naming conventions for test files.\n  - You can find examples in project.\n- **Documentation:**\n  - Use Storybook to document your components.\n  - Create `.stories.(ts|svelte)` files next to the component.\n- **Styling:**\n  - Use TailwindCSS to style your components.\n- **Validation:**\n  - Use Valibot to validate your objects in form actions and api RESTful.\n- **Internationalization:**\n  - Use svelte-i18n to translate your texts.\n\n## Getting Started\n\n1. Clone this repository to your computer.\n2. Install dependencies with `pnpm install`.\n3. Start the development server with `pnpm dev`.\n4. Create your components in the `src/lib/components` folder.\n5. Create your pages in the `src/routes` folder.\n6. Follow the development standards for testing, documentation, styling, validation, and internationalization.\n\n## Questions?\n\nIf you have questions or need help, open an issue in this repository.\n\n## Additional Resources\n\n- SvelteKit Documentation: [https://kit.svelte.dev/](https://kit.svelte.dev/)\n- Vitest: [https://vitest.dev/](https://vitest.dev/)\n- Playwright-CT: [https://playwright.dev/docs/test-components](https://playwright.dev/docs/test-components)\n- Storybook: [https://storybook.js.org/](https://storybook.js.org/)\n- TailwindCSS: [https://tailwindcss.com/](https://tailwindcss.com/)\n- Valibot: [https://www.npmjs.com/package/valibot](https://www.npmjs.com/package/valibot)\n- Svelte-i18n: [https://www.npmjs.com/package/svelte-i18n](https://www.npmjs.com/package/svelte-i18n)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvulppi-dev%2Fsveltekit-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvulppi-dev%2Fsveltekit-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvulppi-dev%2Fsveltekit-boilerplate/lists"}