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/svelte
LLM (this repo) · 1PldbLinguistWikipediaHyperpolyglotWikidata · Q16863097

Wikipedia 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 byThe Svelte maintainers · and various contributors. Includes Rich Harris · Conduitry · Tan Li Hau · Ben McCann · and Simon Holthausen
First appearedInitial release
LicenseMIT License
Homepagehttps://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.
ExtensionSourceStrengthSWH
.sveltelinguistprimary4.4M files

Related languages

Slate (0.25)SociaLite (0.19)Syndicate (0.19)Ante (0.17)Kite (0.17)

LLM-contributed programs

Counter Component

Provenance: commit 84518225fd · authored 2026-02-12T13:16:46+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.svelte · added: 2026-02-12T12:15:35.840125Z
<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.)

Contribute — propose a file extension

Tell us where to find evidence about Svelte (mapped to pl/svelte). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Svelte/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Suzy svg →