Hacker News new | ask | show | jobs
by DeWilde 1273 days ago
Anyone here using Svelte or now SvelteKit, how does it compare to React and Vue and Next and Nuxt respectively?
2 comments

NextJS and SvelteKit are same same.

SvelteKit might offer a slightly higher DX by being the new kid on the block that learned from NextJS and Co. The big difference is just Svelte vs React. Svelte is delighting to use but a headless UI library, or generally good UI lib is missing and JSX has its advantages. The advantages of JSX being more flexible and better TypeScript support. I decided to go with Solid for a new project. Solid combines Svelte's easier reactivity and JSX. More about the rationale behind choosing Solid can be read in an RFC I wrote https://github.com/inlang/inlang/blob/main/rfcs/002-tech-sta...

the new Next is very close to SvelteKit, because they copied their routing
actually, svelte-kit copied nextjs routing :D rich harris read the routing RFC from the next team before they released it
interesting, that's been in the works for quite a while then