Svelte
1 program
Added 2026-02-12T12:15:35.840125Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 84518225fd · authored 2026-02-12T13:16:46+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/svelteWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | The Svelte maintainers · and various contributors. Includes Rich Harris · Conduitry · Tan Li Hau · Ben McCann · and Simon Holthausen |
|---|---|
| First appeared | Initial release |
| License | MIT License |
| Homepage | https://svelte.dev/docs/kit |
Extensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.svelte | linguist | primary | 4.4M files |
Related languages
LLM-contributed programs
Counter Component
Provenance: commit 84518225fd · authored 2026-02-12T13:16:46+01:00 · agent claude-code · model sonnet · WebSearch disabled
<script>
let count = 0;
function increment() {
count += 1;
}
</script>
<button on:click={increment}>
Clicked {count} {count === 1 ? 'time' : 'times'}
</button>
<style>
button {
font-family: inherit;
font-size: inherit;
padding: 1em 2em;
color: #ff3e00;
background-color: rgba(255, 62, 0, 0.1);
border-radius: 2em;
border: 2px solid rgba(255, 62, 0, 0);
outline: none;
width: 200px;
font-variant-numeric: tabular-nums;
cursor: pointer;
}
button:focus {
border: 2px solid #ff3e00;
}
button:active {
background-color: rgba(255, 62, 0, 0.2);
}
</style>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)