A tool for people curious about the React Server Components protocol
TypeScript 78.4%
CSS 12.2%
JavaScript 5.7%
HTML 3.6%
Other 0.1%
35 1 0

Clone this repository

https://tangled.org/dai.bsky.social/rscexplorer
git@tangled.org:dai.bsky.social/rscexplorer

For self-hosted knots, clone URLs may differ based on your setup.

README.md

RSC Explorer#

A tool for educators and tinkerers curious about the React Server Components (RSC) protocol.

RSC Explorer runs both the Server and the Client parts of RSC in the browser.

It lets you inspect the RSC stream step by step and observe the React tree that is being streamed at every step. It also hosts some examples that showcase how React Server and Client features can interplay.

Screenshot

This is a hobby project and is not affiliated with or endorsed by any person, living or dead.

Blog Post#

Read Introducing RSC Explorer for an overview of the tool and why I made it.

Examples#

Embedding#

You can embed RSC Explorer onto a page. Press the < > button in the top bar for the embed code.

Development#

Key design decisions to keep in mind:

  • The Server part runs in a worker.
  • We try to approximate a real RSC environment as much as we can (while staying in browser).
  • No dependencies on React internals. We use react-server-dom-webpack and shim the Webpack runtime.
  • No dependencies on the protocol format. We display it, but treat it as an implementation detail of React.
  • Only end-to-end tests.

This is fully vibecoded but heavily steered so individual pieces may be weird or suboptimal.

Improvements welcome.

License#

MIT