jpskill.com
🛠️ 開発・MCP コミュニティ

react-server-components-framework

Design and implement React Server Components with Next.js 15 App Router. Master server-first architecture, streaming SSR, Server Actions, and modern data fetching patterns for 2025+ frontend development.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o react-server-components-framework.zip https://jpskill.com/download/17253.zip && unzip -o react-server-components-framework.zip && rm react-server-components-framework.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17253.zip -OutFile "$d\react-server-components-framework.zip"; Expand-Archive "$d\react-server-components-framework.zip" -DestinationPath $d -Force; ri "$d\react-server-components-framework.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して react-server-components-framework.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → react-server-components-framework フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
6

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

React Server Components Framework

概要

React Server Components (RSC) は、クライアント側のインタラクティビティを備えたサーバーファーストのレンダリングを可能にする、Reactアーキテクチャにおけるパラダイムシフトです。このスキルは、Server Components、Server Actions、およびストリーミングを使用して、App Router を備えた最新の Next.js 15 アプリケーションを構築するための包括的なパターン、テンプレート、およびベストプラクティスを提供します。

このスキルを使用するべき場合:

  • App Router を使用した Next.js 15+ アプリケーションの構築
  • コンポーネント境界の設計 (Server vs Client Components)
  • キャッシングと再検証によるデータフェッチの実装
  • Server Actions によるミューテーションの作成
  • ストリーミングと Suspense によるパフォーマンスの最適化
  • Partial Prerendering (PPR) の実装
  • 高度なルーティングパターンの設計 (parallel, intercepting routes)

React Server Components が重要な理由

RSC は、React アプリケーションに対する考え方を根本的に変えます。

  • サーバーファーストアーキテクチャ: コンポーネントはデフォルトでサーバー上でレンダリングされ、クライアントバンドルサイズを削減します。
  • ゼロクライアントバンドル: Server Components は JavaScript をクライアントに送信しません。
  • 直接バックエンドアクセス: コンポーネントからデータベース、ファイルシステム、および API に直接アクセスします。
  • 自動コード分割: Client Components とその依存関係のみがバンドルされます。
  • ストリーミングと Suspense: 瞬時の体感パフォーマンスのためのプログレッシブレンダリング
  • タイプセーフなデータフェッチ: データベースから UI までのエンドツーエンドの TypeScript
  • SEO とパフォーマンス: サーバーレンダリングは Core Web Vitals と SEO を改善します。

コアコンセプト

1. Server Components vs Client Components

Server Components (デフォルト):

  • async にでき、await を使用できます。
  • 直接データベースアクセス
  • hooks またはブラウザ API を使用できません。
  • ゼロクライアント JavaScript

Client Components (with 'use client'):

  • hooks (useState, useEffect など) を使用できます。
  • ブラウザ API が利用可能です。
  • async にできません。
  • JavaScript をクライアントに送信します。

重要なルール: Server Components は Client Components をレンダリングできますが、Client Components は Server Components を直接インポートできません (代わりに children プロパティを使用します)。

詳細なパターン: 以下の内容については references/component-patterns.md を参照してください。

  • 完全なコンポーネント境界ルール
  • 構成パターン
  • Props 渡し戦略
  • よくある落とし穴と解決策

2. データフェッチ

Next.js は、強力なキャッシングと再検証で fetch API を拡張します。

// 静的 (無期限にキャッシュ)
await fetch(url, { cache: 'force-cache' })

// 60 秒ごとに再検証
await fetch(url, { next: { revalidate: 60 } })

// 常に最新
await fetch(url, { cache: 'no-store' })

// タグベースの再検証
await fetch(url, { next: { tags: ['posts'] } })

パターン:

  • 並列フェッチ: Promise.all([fetch1, fetch2, fetch3])
  • シーケンシャルフェッチ: データが前の結果に依存する場合
  • ルートセグメント設定: 静的/動的レンダリングの制御

詳細な実装: 以下の内容については references/data-fetching.md を参照してください。

  • 完全なキャッシング戦略
  • 再検証メソッド (revalidatePath, revalidateTag)
  • Server Components でのデータベースクエリ
  • SSG 用の generateStaticParams
  • エラー処理パターン

3. Server Actions

Server Actions は、API ルートなしでミューテーションを可能にします。

// app/actions.ts
'use server'

export async function createPost(formData: FormData) {
  const title = formData.get('title') as string
  const post = await db.post.create({ data: { title } })

  revalidatePath('/posts')
  redirect(`/posts/${post.id}`)
}

プログレッシブエンハンスメント: フォームは JavaScript なしで動作し、クライアント側の状態によって拡張されます。

詳細な実装: 以下の内容については references/server-actions.md を参照してください。

  • プログレッシブエンハンスメントパターン
  • useFormStatus および useFormState hooks
  • useOptimistic による楽観的 UI
  • Zod によるバリデーション
  • インライン vs エクスポートされた Server Actions

4. Suspense によるストリーミング

より良い体感パフォーマンスのために、コンポーネントを個別にストリームします。

import { Suspense } from 'react'

export default function Dashboard() {
  return (
    <div>
      <Suspense fallback={<ChartSkeleton />}>
        <RevenueChart />
      </Suspense>

      <Suspense fallback={<InvoicesSkeleton />}>
        <LatestInvoices />
      </Suspense>
    </div>
  )
}

利点:

  • コンテンツが準備でき次第表示
  • ノンブロッキングデータフェッチ
  • より良い Core Web Vitals

テンプレート: ストリーミングパターンについては templates/ServerComponent.tsx を使用してください。

5. 高度なルーティング

Parallel Routes: 複数のページを同時にレンダリングします。

app/
  @team/page.tsx
  @analytics/page.tsx
  layout.tsx  # 両方を props として受け取ります

Intercepting Routes: URL を保持しながらモーダルを表示します。

app/
  photos/[id]/page.tsx      # 直接ルート
  (..)photos/[id]/page.tsx  # インターセプトされた (モーダル)

Partial Prerendering (PPR): 静的コンテンツと動的コンテンツを混在させます。

export const experimental_ppr = true

// 静的シェル + 動的 Suspense 境界

詳細な実装: 以下の内容については references/routing-patterns.md を参照してください。

  • Parallel routes レイアウトの実装
  • モーダルのための Intercepting routes
  • PPR の構成とパターン
  • 組織のためのルートグループ
  • 動的、キャッチオール、およびオプションのキャッチオールルート

参照の検索

grep を使用して、参照内の特定のパターンを見つけます。

# コンポーネントパターンを検索
grep -r "Server Component" references/

# データフェッチ戦略を検索
grep -A 10 "Caching Strategies" references/data-fetching.md

# Server Actions の例を検索
grep -B 5 "Progressive Enhancement" references/server-actions.md

# ルーティングパターンを検索
grep -n "Parallel Routes" references/routing-patterns.md

# 移行ガイドを検索
grep -i "pages router\|getServerSideProps" references/migration-guide.md

ベストプラクティス

コンポーネント境界の設計

  • ✅ Client Components をコンポーネントツリーのエッジ (リーフ) に保持します。
  • ✅ デフォルトで Server Components を使用します。
  • ✅ 最小限のインタラクティブな部分を Client Components に抽出します。
  • ✅ Server Components を children として Client Components に渡します。
  • ❌ ページ全体を Client Components にすることを避けます。

データ Fe

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

React Server Components Framework

Overview

React Server Components (RSC) represent a paradigm shift in React architecture, enabling server-first rendering with client-side interactivity. This skill provides comprehensive patterns, templates, and best practices for building modern Next.js 15 applications using the App Router with Server Components, Server Actions, and streaming.

When to use this skill:

  • Building Next.js 15+ applications with the App Router
  • Designing component boundaries (Server vs Client Components)
  • Implementing data fetching with caching and revalidation
  • Creating mutations with Server Actions
  • Optimizing performance with streaming and Suspense
  • Implementing Partial Prerendering (PPR)
  • Designing advanced routing patterns (parallel, intercepting routes)

Why React Server Components Matter

RSC fundamentally changes how we think about React applications:

  • Server-First Architecture: Components render on the server by default, reducing client bundle size
  • Zero Client Bundle: Server Components don't ship JavaScript to the client
  • Direct Backend Access: Access databases, file systems, and APIs directly from components
  • Automatic Code Splitting: Only Client Components and their dependencies are bundled
  • Streaming & Suspense: Progressive rendering for instant perceived performance
  • Type-Safe Data Fetching: End-to-end TypeScript from database to UI
  • SEO & Performance: Server rendering improves Core Web Vitals and SEO

Core Concepts

1. Server Components vs Client Components

Server Components (default):

  • Can be async and use await
  • Direct database access
  • Cannot use hooks or browser APIs
  • Zero client JavaScript

Client Components (with 'use client'):

  • Can use hooks (useState, useEffect, etc.)
  • Browser APIs available
  • Cannot be async
  • Ships JavaScript to client

Key Rule: Server Components can render Client Components, but Client Components cannot directly import Server Components (use children prop instead).

Detailed Patterns: See references/component-patterns.md for:

  • Complete component boundary rules
  • Composition patterns
  • Props passing strategies
  • Common pitfalls and solutions

2. Data Fetching

Next.js extends the fetch API with powerful caching and revalidation:

// Static (cached indefinitely)
await fetch(url, { cache: 'force-cache' })

// Revalidate every 60 seconds
await fetch(url, { next: { revalidate: 60 } })

// Always fresh
await fetch(url, { cache: 'no-store' })

// Tag-based revalidation
await fetch(url, { next: { tags: ['posts'] } })

Patterns:

  • Parallel fetching: Promise.all([fetch1, fetch2, fetch3])
  • Sequential fetching: When data depends on previous results
  • Route segment config: Control static/dynamic rendering

Detailed Implementation: See references/data-fetching.md for:

  • Complete caching strategies
  • Revalidation methods (revalidatePath, revalidateTag)
  • Database queries in Server Components
  • generateStaticParams for SSG
  • Error handling patterns

3. Server Actions

Server Actions enable mutations without API routes:

// app/actions.ts
'use server'

export async function createPost(formData: FormData) {
  const title = formData.get('title') as string
  const post = await db.post.create({ data: { title } })

  revalidatePath('/posts')
  redirect(`/posts/${post.id}`)
}

Progressive Enhancement: Forms work without JavaScript, then enhance with client-side states.

Detailed Implementation: See references/server-actions.md for:

  • Progressive enhancement patterns
  • useFormStatus and useFormState hooks
  • Optimistic UI with useOptimistic
  • Validation with Zod
  • Inline vs exported Server Actions

4. Streaming with Suspense

Stream components independently for better perceived performance:

import { Suspense } from 'react'

export default function Dashboard() {
  return (
    <div>
      <Suspense fallback={<ChartSkeleton />}>
        <RevenueChart />
      </Suspense>

      <Suspense fallback={<InvoicesSkeleton />}>
        <LatestInvoices />
      </Suspense>
    </div>
  )
}

Benefits:

  • Show content as it's ready
  • Non-blocking data fetching
  • Better Core Web Vitals

Templates: Use templates/ServerComponent.tsx for streaming patterns

5. Advanced Routing

Parallel Routes: Render multiple pages simultaneously

app/
  @team/page.tsx
  @analytics/page.tsx
  layout.tsx  # Receives both as props

Intercepting Routes: Show modals while preserving URLs

app/
  photos/[id]/page.tsx      # Direct route
  (..)photos/[id]/page.tsx  # Intercepted (modal)

Partial Prerendering (PPR): Mix static and dynamic content

export const experimental_ppr = true

// Static shell + dynamic Suspense boundaries

Detailed Implementation: See references/routing-patterns.md for:

  • Parallel routes layout implementation
  • Intercepting routes for modals
  • PPR configuration and patterns
  • Route groups for organization
  • Dynamic, catch-all, and optional catch-all routes

Searching References

Use grep to find specific patterns in references:

# Find component patterns
grep -r "Server Component" references/

# Search for data fetching strategies
grep -A 10 "Caching Strategies" references/data-fetching.md

# Find Server Actions examples
grep -B 5 "Progressive Enhancement" references/server-actions.md

# Locate routing patterns
grep -n "Parallel Routes" references/routing-patterns.md

# Search migration guide
grep -i "pages router\|getServerSideProps" references/migration-guide.md

Best Practices

Component Boundary Design

  • ✅ Keep Client Components at the edges (leaves) of the component tree
  • ✅ Use Server Components by default
  • ✅ Extract minimal interactive parts to Client Components
  • ✅ Pass Server Components as children to Client Components
  • ❌ Avoid making entire pages Client Components

Data Fetching

  • ✅ Fetch data in Server Components close to where it's used
  • ✅ Use parallel fetching for independent data
  • ✅ Set appropriate cache and revalidate options
  • ✅ Use generateStaticParams for static routes
  • ❌ Don't fetch data in Client Components with useEffect (use Server Components)

Performance

  • ✅ Use Suspense boundaries for streaming
  • ✅ Implement loading.tsx for instant loading states
  • ✅ Enable PPR for static/dynamic mix
  • ✅ Optimize images with next/image
  • ✅ Use route segment config to control rendering mode

Error Handling

  • ✅ Implement error.tsx for error boundaries
  • ✅ Use not-found.tsx for 404 pages
  • ✅ Handle fetch errors gracefully
  • ✅ Validate Server Action inputs

Templates

Use provided templates for common patterns:

  • templates/ServerComponent.tsx - Basic async Server Component with data fetching
  • templates/ClientComponent.tsx - Interactive Client Component with hooks
  • templates/ServerAction.tsx - Server Action with validation and revalidation

Examples

Complete Blog App

See examples/blog-app/ for a full implementation:

  • Server Components for post listing and details
  • Client Components for comments and likes
  • Server Actions for creating/editing posts
  • Streaming with Suspense
  • Parallel routes for dashboard

Checklists

RSC Implementation Checklist

See checklists/rsc-implementation.md for comprehensive validation covering:

  • [ ] Component boundaries properly defined (Server vs Client)
  • [ ] Data fetching with appropriate caching strategy
  • [ ] Server Actions for mutations
  • [ ] Streaming with Suspense for slow components
  • [ ] Error handling (error.tsx, not-found.tsx)
  • [ ] Loading states (loading.tsx)
  • [ ] Metadata API for SEO
  • [ ] Route segment config optimized

Common Patterns

Search with URL State

// app/search/page.tsx
export default async function SearchPage({
  searchParams,
}: {
  searchParams: { q?: string }
}) {
  const query = searchParams.q || ''
  const results = query ? await searchProducts(query) : []

  return (
    <div>
      <SearchForm initialQuery={query} />
      <SearchResults results={results} />
    </div>
  )
}

Authentication

import { cookies } from 'next/headers'

export default async function DashboardPage() {
  const token = cookies().get('token')?.value
  const user = await verifyToken(token)

  if (!user) {
    redirect('/login')
  }

  return <Dashboard user={user} />
}

Optimistic UI

'use client'

import { useOptimistic } from 'react'

export function TodoList({ todos }) {
  const [optimisticTodos, addOptimisticTodo] = useOptimistic(
    todos,
    (state, newTodo) => [...state, newTodo]
  )

  return <ul>{/* render optimisticTodos */}</ul>
}

Migration from Pages Router

Incremental Adoption: Both pages/ and app/ can coexist

Key Changes:

  • getServerSideProps → async Server Component
  • getStaticProps → async Server Component with caching
  • API routes → Server Actions
  • _app.tsxlayout.tsx
  • <Head>generateMetadata function

Detailed Migration: See references/migration-guide.md for:

  • Step-by-step migration guide
  • Before/after code examples
  • Common migration pitfalls
  • Layout and metadata migration patterns

Troubleshooting

Error: "You're importing a component that needs useState"

  • Fix: Add 'use client' directive to the component

Error: "async/await is not valid in non-async Server Components"

  • Fix: Add async to function declaration

Error: "Cannot use Server Component inside Client Component"

  • Fix: Pass Server Component as children prop instead of importing

Error: "Hydration mismatch"

  • Fix: Use 'use client' for components using Date.now(), Math.random(), or browser APIs

Resources


Next Steps

After mastering React Server Components:

  1. Explore Streaming API Patterns skill for real-time data
  2. Use Type Safety & Validation skill for tRPC integration
  3. Apply Edge Computing Patterns skill for global deployment
  4. Reference Performance Optimization skill for Core Web Vitals

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。