6 ms·
Anyone here using Svelte or now SvelteKit, how does it compare to React and Vue and Next and Nuxt respectively?
by DeWilde 4y ago
Anyone here using Svelte or now SvelteKit, how does it compare to React and Vue and Next and Nuxt respectively?
- samuelstros 4y agoNextJS 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-stack.md https://github.com/inlang/inlang/blob/main/rfcs/002-tech-sta...
- nathias 4y agothe new Next is very close to SvelteKit, because they copied their routing
- samuelstros 4y agoactually, svelte-kit copied nextjs routing :D rich harris read the routing RFC from the next team before they released it
- nathias 4y agointeresting, that's been in the works for quite a while then