untitled RSCs overview

React server components have sorta existed for a bit, but people are only now (2025/04) really finally having a discussion about them.

... And by "people are having a discussion about RSCs" I mean "people are generally hating on some combination of RSCs and Next.js".

I've been using RSCs in prod since July 2023 β€” for context, that's only a couple months after Next.js v13.4 shipped their App Router as stable, inclusive of RSCs, in May 2023.

So let's try to tackle:

Before you "um, actually..."

Shut up, nerd. My intended audience is webdevs. Also I don't know the technicals at the deepest levels.

What are RSCs?

React server components are basically just server-exclusive react components which return in a special, serialized jsx format to the client.

The RSC payload is a custom protocol that React made (neither JSON nor HTML). It's a serialized tree that is interpreted by the client.

Only the serialized result of RSCs makes it to the client (i.e., no client-side JS).

Why use RSCs? Like, what's the value?

There's really only a couple exclusive "features" of RSCs compared to traditional React client components:

  1. RSCs can access server-only stuff
    • Since RSCs run exclusively on the server, you can use server-only stuff like the filesystem, secrets, etc.
    • πŸ¦ΆπŸ”« β€” Careful with what you return.
  2. RSCs can be async
    • You can use await in an async RSC.
    • Need data? No useEffect or tanstack-query necessary (well, mostly; see #parallel systems). Heck, you can even call Prisma, Drizzle, or whatever directly.
    • πŸ¦ΆπŸ”« β€” You'll wanna get familiar with <suspense> so you can stream the response to the client when it's ready instead of holding up rendering.

... but what RSCs encourage and unlock is a lot more significant than just server access and async components.

RSCs provide more compositional guidance

I can hear a bunch of you thinking:

"more compositional guidance" sounds like a fancy way to say "less flexibility"

... And you're not wholly wrong, but you're not right either.

Think about it: a good portion of JSX you write doesn't necessitate any JavaScript on the client β€” you just couldn't really establish a boundary for which JSX necessitated client JS and which didn't.

Because of this ‴️, the client has been overloaded with responsibilities in a SPA world and it had the implication of "allowing" (encouraging?) us to centralize more and more responsibility in the client.

More responsibility in the client also means more flexibility in the client. But that flexibility can lead to more compositional chaos β€” because you can sort of do anything, anywhere. Components that shouldn't necessarily be responsible for something can be simply because nothing's really stopping them. (This honestly a hard problem to describe without examples or actually working with RSCs guidelines β€” stick with me)

RSCs provide a fluid way to establish boundaries between what should just be rendered and what needs to be interactive / reactive in the client.

Client boundaries will put more guidelines on your compositional approach β€” which may feel limiting at first, but it ultimately "forces" some better patterns like:

Beyond encouraging better patterns, the boundaries and RSCs unlock some stuff:

I think that's a solid summary of the "what" and "why" β€” let's look at some actual RSCs to give concrete examples before tackling the "weird" and "bad".

RSC examples

"Weird" parts of RSCs

Note: some of these points may not necessarily be the result of RSCs, but they're related enough and a bit weird.

"Bad" parts of RSCs

What about Next.js and Vercel?

Ah, right right... I'll try to be fairly objective, but I think subjectivism is hard to avoid here too.

At a high level, I think Next.js and Vercel:

Next.js is very capable software, but it requires a high degree of investment to truly reach the high UX ceiling it enables. And that's sort of a problem because most people don't need perfect UX; most people just need "good enough" UX and want fast, low-investment DX.

Given Next.js' popularity, this amounts to Next.js and Vercel being a "bad first impression" and/or "ambassador" of RSCs.

If you want more about all this, here's some bullets:

"The issue is the tradeoffs involved in making [RSCs] work. It leaks into, or even demands control over layers that are previously not in scope for client-side frameworks. This creates heavy complexity (and associated mental overhead) in order to get the main benefits it promises."
β€” Evan You

The fast navigations we are used to are arguably a FLAW of SPAs - the lack of data loaders meant that it was hard to block navigation. But it resulted in bloated JS payloads, loading spinner hell, and absolute chaos as your apps scale.
β€” Theo

React Server Components are nice in theory, but 5 years in, it just isn’t working out.

It’s been fun, React. You taught me a lot.

Have fun with your react-server-dom-esm-vite-client/server bundles. I’m done. ✌️
β€” MJ

People are mad that the fast nextjs demos prefetch. Even though it’s customizable.

It just seems like people want:
- everything to be fast to load
- fast to interact or navigate
- not download all the js up front
- not download all the data up front
- not have cascading waterfalls.

And they want it all automatically with no tweaking.

β€” Anonymous friend

LINK DUMP

VIDEO DUMP
(haven't watched yet, but seemed comprehensive)

Conclusion + this author's opinion

That's the end I guess. Yell at me on Twitter: https://x.com/tyler_dot_earth