Next.js 学習 : 基礎 (Foundations) 2025-04
React Foundations
1 章 About React and Next.js
2 章 Rendering User Interfaces (UI)
3 章 Updating UI with Javascript
HTML は初期のページ内容を表しており、DOM は更新されたページ内容を表す React は UI 構築に使える流行りの宣言的ライブラリである
4 章 Getting Started with React
5 章 Building UI with Components
React を使っていくうえで重要な 3 つの概念
コンポーネント (Components)
プロップ (Props)
状態 (State)
6 章 Displaying Data with Props
7 章 Adding Interactivity with State
フック (hooks)
8 章 From React to Next.js
9 章 Installing Next.js
開発サーバー (development server) を動かすには next dev コマンドを使う
app/layout.js ファイルはアプリケーションの主たるレイアウト
10 章 Server and Client Components
React では、コンポーネント木の中で、ネットワーク境界をどこに置くかをあなたが選択する
コンポーネントは 2 つのモジュールグラフに分けられる
サーバーモジュールグラフ (server module graph) (or tree)
クライアントモジュールグラフ (client module graph) (or tree)
含まれるもの
11 章 Next Steps