docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# [[React 19]]
|
||||
# [[React 19|React 19]]
|
||||
|
||||
## 📌 Brief Summary
|
||||
React 19는 UI의 반응성을 높이고 성능 최적화를 자동화하는 데 중점을 둔 React의 주요 업데이트 버전입니다 [1, 2]. 이 버전은 빌드 타임에 자동으로 메모이제이션을 수행하는 React Compiler를 도입하여 개발자의 수동 최적화 부담을 크게 줄여줍니다 [3, 4]. 또한, 모든 컴포넌트를 기본적으로 서버 컴포넌트(Server Components)로 처리하여 클라이언트 측 자바스크립트 번들 크기를 획기적으로 줄이고 렌더링 효율을 높이는 패러다임의 전환을 가져왔습니다 [5, 6].
|
||||
@@ -10,8 +10,8 @@ React 19는 UI의 반응성을 높이고 성능 최적화를 자동화하는 데
|
||||
- **데이터 패칭 및 상태 관리의 진화:** 서버 컴포넌트는 브라우저를 거치지 않고 서버 환경에서 직접 데이터베이스나 파일 시스템에 접근하여 데이터를 가져올 수 있습니다 [14]. 또한 `useOptimistic`, `useActionState`, 프로미스를 직접 다루는 `use` 훅 등을 통해 데이터 패칭 및 비동기 상태 관리를 한층 더 효율적으로 수행할 수 있도록 지원합니다 [15].
|
||||
|
||||
## 🔗 Knowledge Connections
|
||||
- **Related Topics:** [[React Compiler]], [[React Server Components (RSC)]], [[Concurrent Rendering]], [[useTransition]], [[useDeferredValue]]
|
||||
- **Projects/Contexts:** [[Frontend Performance Optimization]], [[Next.js App Router]]
|
||||
- **Related Topics:** [[React Compiler|React Compiler]], [[React Server Components (RSC)|React Server Components (RSC)]], [[Concurrent Rendering|Concurrent Rendering]], [[useTransition|useTransition]], [[useDeferredValue|useDeferredValue]]
|
||||
- **Projects/Contexts:** [[프론트엔드 성능 최적화(Frontend Performance Optimization)|Frontend Performance Optimization]], [[Next.js App Router|Next.js App Router]]
|
||||
- **Contradictions/Notes:** React 19의 React Compiler가 수동 메모이제이션 작업의 90% 이상을 자동으로 처리하지만, 타사 라이브러리와의 통합이나 명시적 제어가 필요한 이펙트 의존성 관리를 위해서는 여전히 `useMemo`나 `useCallback`을 수동으로 사용하는 예외 수단(Escape Hatch)이 필요할 수 있습니다 [16-18].
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user