← スキル一覧に戻る

react-state-management
by HoangNguyen0403
react-state-managementは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 111🍴 40📅 2026年1月23日
SKILL.md
name: React State Management description: Standards for managing local, global, and server state. metadata: labels: [react, state, redux, zustand, context] triggers: files: ['/*.tsx', '/*.jsx'] keywords: [state, useReducer, context, store, props]
React State Management
Priority: P0 (CRITICAL)
Choosing the right tool for state scope.
Implementation Guidelines
- Local:
useState.useReducerif complex (state machine). - Derived:
const fullName = first + last. No state sync. - Context: DI, Theming, Auth. Not for high-freq data.
- Global: Zustand/Redux for app-wide complex flow.
- Server Cache: Use
React.cache(RSC) to dedupe requests per render. - Server State: React Query / SWR / Apollo. Cache != UI State.
- URL: Store filter/sort params in URL (Source of Truth).
- Immutability: Never mutate. Use spread or Immer.
Anti-Patterns
- No Prop Drilling > 2: Use Context/Composition.
- No Mirroring Refs: Don't copy props to state.
- No Multi-Source: Single Source of Truth.
- No Context Abuse: Context causes full-tree re-render.
Reference & Examples
For Zustand, Redux Toolkit, and TanStack Query patterns: See references/REFERENCE.md.
Related Topics
hooks | component-patterns | performance
スコア
総合スコア
85/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
3ヶ月以内に更新
+5
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です

