Hacker News new | ask | show | jobs
by tuukkah 1685 days ago
Isn't it actually the opposite? Svelte code is compiled to plain JS whereas React has a large runtime.
1 comments

Nah, JSX also gets converted to Javascript. The difference is in that the React runtime re-renders whole components every time something changes, and Svelte is more granular about it even during the compilation step.