Comment by SebastianKra

Comment by SebastianKra 10 hours ago

1 reply

Why do these articles keep dismissing the innovations by React itself. The Svelte compiler is revolutionary, but the React compiler is not enough somehow. The React-Team has worked on server components, concurrent rendering, suspense & transitions. They all integrate with each other to allow for some really elegant patterns.

While the VDOM overhead does exist, it's not the performance bottleneck. More likely reasons are waterfall fetching (present in all frameworks and solvable by React Server Components) or excessive revalidation (solved by the compiler)

squidsoup 8 hours ago

You don't even need RSC to fix waterfall fetching, relay solves this problem beautifully.