Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
reactjs avatar

Docs Rsc Sandpack

  • 52 installs
  • 11.8k repo stars
  • Updated July 31, 2026
  • reactjs/react.dev

Helps with ai & agent building tasks.

About

docs-rsc-sandpack is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • docs-rsc-sandpack
  • AI & Agent Building
  • AI-coding skill

Docs Rsc Sandpack by the numbers

  • 52 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #7,142 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/reactjs/react.dev --skill docs-rsc-sandpack

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs52
repo stars11.8k
Last updatedJuly 31, 2026
Repositoryreactjs/react.dev

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

RSC Sandpack Patterns

For general Sandpack conventions (code style, naming, file naming, line highlighting, hidden files, CSS guidelines), see /docs-sandpack. This skill covers only RSC-specific patterns.

Quick Start Template

Minimal single-file <SandpackRSC> example:

<SandpackRSC>

` ` `js src/App.js
export default function App() {
  return <h1>Hello from a Server Component!</h1>;
}
` ` `

</SandpackRSC>

---

How It Differs from <Sandpack>

Feature<Sandpack><SandpackRSC>
Execution modelAll code runs in iframeServer code runs in Web Worker, client code in iframe
'use client' directiveIgnored (everything is client)Required to mark client components
'use server' directiveNot supportedMarks Server Functions callable from client
async componentsNot supportedSupported (server components can be async)
External dependenciesSupported via package.jsonNot supported (only React + react-dom)
Entry pointApp.js with export defaultsrc/App.js with export default
Component tag<Sandpack><SandpackRSC>

---

File Directives

Files are classified by the directive at the top of the file:

DirectiveWhere it runsRules
(none)Web Worker (server)Default. Can be async. Can import other server files. Cannot use hooks, event handlers, or browser APIs.
'use client'Sandpack iframe (browser)Must be first statement. Can use hooks, event handlers, browser APIs. Cannot be async. Cannot import server files.
'use server'Web Worker (server)Marks Server Functions. Can be module-level (all exports are actions) or function-level. Callable from client via props or form action.

---

Common Patterns

1. Server + Client Components

<SandpackRSC>

` ` `js src/App.js
import Counter from './Counter';

export default function App() {
  return (
    <div>
      <h1>Server-rendered heading</h1>
      <Counter />
    </div>
  );
}
` ` `

` ` `js src/Counter.js
'use client';

import { useState } from 'react';

export default function Counter() {
  const [count, setCount] = useState(0);
  return (
    <button onClick={() => setCount(count + 1)}>
      Count: {count}
    </button>
  );
}
` ` `

</SandpackRSC>

2. Async Server Component with Suspense

<SandpackRSC>

` ` `js src/App.js
import { Suspense } from 'react';
import Albums from './Albums';

export default function App() {
  return (
    <Suspense fallback={<p>Loading...</p>}>
      <Albums />
    </Suspense>
  );
}
` ` `

` ` `js src/Albums.js
async function fetchAlbums() {
  await new Promise(resolve => setTimeout(resolve, 1000));
  return ['Abbey Road', 'Let It Be', 'Revolver'];
}

export default async function Albums() {
  const albums = await fetchAlbums();
  return (
    <ul>
      {albums.map(album => (
        <li key={album}>{album}</li>
      ))}
    </ul>
  );
}
` ` `

</SandpackRSC>

3. Server Functions (Actions)

<SandpackRSC>

` ` `js src/App.js
import { addLike, getLikeCount } from './actions';
import LikeButton from './LikeButton';

export default async function App() {
  const count = await getLikeCount();
  return (
    <div>
      <p>Likes: {count}</p>
      <LikeButton addLike={addLike} />
    </div>
  );
}
` ` `

` ` `js src/actions.js
'use server';

let count = 0;

export async function addLike() {
  count++;
}

export async function getLikeCount() {
  return count;
}
` ` `

` ` `js src/LikeButton.js
'use client';

export default function LikeButton({ addLike }) {
  return (
    <form action={addLike}>
      <button type="submit">Like</button>
    </form>
  );
}
` ` `

</SandpackRSC>

---

File Structure Requirements

Entry Point

  • `src/App.js` is required as the main entry point
  • Must have export default (function component)
  • Case-insensitive fallback: src/app.js also works

Auto-Injected Infrastructure Files

These files are automatically injected by sandpack-rsc-setup.ts and should never be included in MDX:

FilePurpose
/src/index.jsBootstraps the RSC pipeline
/src/rsc-client.jsClient bridge — creates Worker, consumes Flight stream
/src/rsc-server.jsWraps pre-bundled worker runtime as ES module
/node_modules/__webpack_shim__/index.jsMinimal webpack compatibility layer
/node_modules/__rsdw_client__/index.jsreact-server-dom-webpack/client as local dependency

No External Dependencies

<SandpackRSC> does not support external npm packages. Only react and react-dom are available. Do not include package.json in RSC examples.

---

Architecture Reference

Three-Layer Architecture

react.dev page (Next.js)
  ┌─────────────────────────────────────────┐
  │  <SandpackRSC>                          │
  │  ┌─────────┐  ┌──────────────────────┐  │
  │  │ Editor  │  │ Preview (iframe)     │  │
  │  │ App.js  │  │ Client React app     │  │
  │  │ (edit)  │  │ consumes Flight      │  │
  │  │         │  │ stream from Worker   │  │
  │  └─────────┘  └──────────┬───────────┘  │
  └───────────────────────────┼─────────────┘
                              │ postMessage
  ┌───────────────────────────▼─────────────┐
  │  Web Worker (Blob URL)                  │
  │  - React server build (pre-bundled)     │
  │  - react-server-dom-webpack/server      │
  │  - webpack shim                         │
  │  - User server code (Sucrase → CJS)    │
  └─────────────────────────────────────────┘

Key Source Files

FilePurpose
src/components/MDX/Sandpack/sandpack-rsc/RscFileBridge.tsxMonitors Sandpack; posts raw files to iframe
src/components/MDX/Sandpack/SandpackRSCRoot.tsxSandpackProvider setup, custom bundler URL, UI layout
src/components/MDX/Sandpack/templateRSC.tsRSC template files
.../sandbox-code/src/__react_refresh_init__.jsReact Refresh shim
.../sandbox-code/src/rsc-server.jsWorker runtime: module system, Sucrase compilation, renderToReadableStream()
.../sandbox-code/src/rsc-client.source.jsClient bridge: Worker creation, file classification, Flight stream consumption
.../sandbox-code/src/webpack-shim.jsMinimal __webpack_require__ / __webpack_module_cache__ shim
.../sandbox-code/src/worker-bundle.dist.jsPre-bundled IIFE (generated): React server + RSDW/server + Sucrase
scripts/buildRscWorker.mjsesbuild script: bundles rsc-server.js into worker-bundle.dist.js

---

Build System

Rebuilding the Worker Bundle

After modifying rsc-server.js or webpack-shim.js:

node scripts/buildRscWorker.mjs

This runs esbuild with:

  • format: 'iife', platform: 'browser'
  • conditions: ['react-server', 'browser'] (activates React server export conditions)
  • minify: true
  • Prepends webpack-shim.js to the output

Raw-Loader Configuration

In templateRSC.js files are loaded as raw strings with the !raw-loader.

The strings are necessary to provide to Sandpack as local files (skips Sandpack bundling).

Development Commands

node scripts/buildRscWorker.mjs   # Rebuild worker bundle after source changes
yarn dev                           # Start dev server to test examples

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.