{"id":27883374,"url":"https://github.com/zsakowitz/coding-club-template","last_synced_at":"2026-01-24T15:32:39.227Z","repository":{"id":62848600,"uuid":"533960678","full_name":"zsakowitz/coding-club-template","owner":"zsakowitz","description":null,"archived":false,"fork":false,"pushed_at":"2023-09-04T20:11:58.000Z","size":128,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-05T06:15:35.246Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/zsakowitz.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":"2022-09-07T22:18:12.000Z","updated_at":"2022-09-07T22:18:18.000Z","dependencies_parsed_at":"2025-05-05T06:15:35.440Z","dependency_job_id":"a8f48c54-2f3d-47ea-aa38-8fe9a0f837d2","html_url":"https://github.com/zsakowitz/coding-club-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zsakowitz/coding-club-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zsakowitz%2Fcoding-club-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zsakowitz%2Fcoding-club-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zsakowitz%2Fcoding-club-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zsakowitz%2Fcoding-club-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zsakowitz","download_url":"https://codeload.github.com/zsakowitz/coding-club-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zsakowitz%2Fcoding-club-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"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":"2025-05-05T06:15:31.607Z","updated_at":"2026-01-24T15:32:39.212Z","avatar_url":"https://github.com/zsakowitz.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Svelte + Vite\n\nThis template should help get you started developing with Svelte in Vite.\n\n## Recommended IDE Setup\n\n[VS Code](https://code.visualstudio.com/) +\n[Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode).\n\n## Need an official Svelte framework?\n\nCheck out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also\npowered by Vite. Deploy anywhere with its serverless-first approach and adapt to\nvarious platforms, with out of the box support for TypeScript, SCSS, and Less,\nand easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more.\n\n## Technical considerations\n\n**Why use this over SvelteKit?**\n\n- It brings its own routing solution which might not be preferable for some\n  users.\n- It is first and foremost a framework that just happens to use Vite under the\n  hood, not a Vite app. `vite dev` and `vite build` wouldn't work in a SvelteKit\n  environment, for example.\n\nThis template contains as little as possible to get started with Vite + Svelte,\nwhile taking into account the developer experience with regards to HMR and\nintellisense. It demonstrates capabilities on par with the other `create-vite`\ntemplates and is a good starting point for beginners dipping their toes into a\nVite + Svelte project.\n\nShould you later need the extended capabilities and extensibility provided by\nSvelteKit, the template has been structured similarly to SvelteKit so that it is\neasy to migrate.\n\n**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or\n`tsconfig.json`?**\n\nSetting `compilerOptions.types` shuts out all other types not explicitly listed\nin the configuration. Using triple-slash references keeps the default TypeScript\nsetting of accepting type information from the entire workspace, while also\nadding `svelte` and `vite/client` type information.\n\n**Why include `.vscode/extensions.json`?**\n\nOther templates indirectly recommend extensions via the README, but this file\nallows VS Code to prompt the user to install the recommended extension upon\nopening the project.\n\n**Why enable `checkJs` in the JS template?**\n\nIt is likely that most cases of changing variable types in runtime are likely to\nbe accidental, rather than deliberate. This provides advanced typechecking out\nof the box. Should you like to take advantage of the dynamically-typed nature of\nJavaScript, it is trivial to change the configuration.\n\n**Why is HMR not preserving my local component state?**\n\nHMR state preservation comes with a number of gotchas! It has been disabled by\ndefault in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often\nsurprising behavior. You can read the details\n[here](https://github.com/rixo/svelte-hmr#svelte-hmr).\n\nIf you have state that's important to retain within a component, consider\ncreating an external store which would not be replaced by HMR.\n\n```js\n// store.js\n// An extremely simple external store\nimport { writable } from \"svelte/store\"\nexport default writable(0)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsakowitz%2Fcoding-club-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzsakowitz%2Fcoding-club-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsakowitz%2Fcoding-club-template/lists"}