Advertisement · 728 × 90

Posts by Didier Catz

You could always clone it and run it locally!

6 months ago 1 0 0 0

Unsolicited tip: you can even do this:

<div style:transform="translate({x}px, {y}px)"> ... </div>

6 months ago 1 0 1 0

I doubt it. It's a SvelteKit feature (not a Svelte feature), but you can always just make remote fucntions call to your 3rd party API.

6 months ago 0 0 0 0

Give me a recipe for a lemon pie

6 months ago 0 0 0 0

You didn’t! Just leaving in case there’s any context missing to other readers (these automatically get cross posted to the Discord)

6 months ago 5 0 2 0

Vercel doesn't own Svelte. They just pay a few folks to work on Svelte full-time. It's independent.

www.reddit.com/r/sveltejs/c...

6 months ago 18 0 2 0

Appreciate you & the team asking for feedback from the community!

6 months ago 3 0 0 0

(This goes for all deriveds)

6 months ago 2 0 1 0

This one I'm not 100% sure on but I believe this should be let, not const:

const noTasks = $derived(tasks.length === 0);

6 months ago 3 0 1 0

Additionally, $state and $derived runes can just have their types normally annotated. No need to pass a generic

`export const store = $state<TaskBoxState>(initialState)`

↓ can be ↓

`export const store: TaskBoxState = $state(initialState)`

6 months ago 2 0 1 0
Advertisement
Post image

First thing I saw when clicking around was this;

In Svelte, you can just do this:

<label for="title-{task.id}">
<input id="title-{task.id}">

No need to do string interpolation with brackets and backticks.

6 months ago 7 0 2 0

The work that the Svelte team is doing is, in my opinion, the most exciting thing in web dev. Not only is what they’re putting out transformative and so, so, so well designed, but they’ll announce some huge new thing coming out “in the future” and a week later, it’s in a patch release.

6 months ago 13 3 0 1

Good Svelte code on an LLM that can run entirely on-device? That's huge

6 months ago 3 0 0 0

Schrödinger's mouse?

6 months ago 0 0 0 0

Hey is that a Strandberg?

1 year ago 1 0 1 0

shout-out to @didiercatz.com and @khromov.se for building this!

1 year ago 29 1 1 1

“you wouldn’t download an iframe”

1 year ago 2 0 0 0

rubberducking

1 year ago 7 0 0 0
Video
1 year ago 4 0 0 0

boasts

1 year ago 1 0 0 0
Advertisement

What theme + font is that? Looks like Rose Pine

1 year ago 1 0 1 0

I’ll add: layout animations! Svelte has a built-in animate:flip directive but it only works while looping over keyed elements. It’d be amazing to have shared layout transitions.

1 year ago 1 0 0 0