Remix.run Logo
SebastianKra 21 hours ago

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 18 hours ago | parent [-]

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

agos 2 hours ago | parent [-]

Only if you already have a graphql backend, otherwise the solution won’t be that easy