←back to thread

Svelte 5 Released

(www.npmjs.com)
390 points begoon | 2 comments | | HN request time: 0.476s | source
Show context
pier25 ◴[] No.41892888[source]
I've been using Svelte since v3 was released almost daily. I've been using v5 for the past couple of weeks and it's fantastic.

The biggest improvement IMO is that you can now write reactive logic intuitively outside your components and it just works without needing to use complex machinery or patterns like Mobx, Redux, or Vuex.

I've been doing frontend since the 90s and used everything under the sun. Svelte 5 is the most pragmatic and elegant solution I've ever used.

replies(2): >>41892944 #>>41894361 #
1. ssijak ◴[] No.41892944[source]
How is mobx complex, its literally plain class for reactive data and wrapping components with observer()
replies(1): >>41893250 #
2. pier25 ◴[] No.41893250[source]
Have you ever looked at all the code that it needs to do that? Plus an integration lib like mobx-react. And even then the performance doesn't compare to Svelte 5, Solid, etc.