generated from muhandojeon/study-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,47 @@ | ||
# 렌더링 패턴 | ||
|
||
## CSR | ||
|
||
- 클라이언트에서 완전히 렌더링 | ||
|
||
## SSR | ||
|
||
- 서버에서 동적으로 렌더링 후, 클라이언트에서 하이드레이션 | ||
|
||
## 정적 렌더링 | ||
|
||
- 빌드 타임에 서버에서 페이지를 렌더링 | ||
|
||
## 점진적 정적 생성 (ISR) | ||
|
||
- 초기 빌드 이후에도 정적 사이트를 동적으로 추가하거나 수정할 수 있음 | ||
|
||
|
||
## 스트리밍 SSR | ||
|
||
- 서버에서 렌더링퇸 콘텐츠를 더 작은 스트림 조각으로 분할하여 전송 | ||
|
||
## 엣지 렌더링 | ||
|
||
- 렌더링된 HTML을 클라이언트에 전송하기 전에 엣지에서 수정 | ||
|
||
## 하이브리드 렌더링 | ||
|
||
- 빌드 타임, 서버 및 클라이언트 렌더링을 결합하여 유연한 접근 방법 제공 | ||
- App router | ||
|
||
## 부분 하이드레이션 | ||
|
||
- 클라이언트에서 일부 컴포넌트만 하이드레이션 | ||
|
||
## 점진적 하이드레이션 | ||
|
||
- 클라이언트에서 컴포넌트 하이드레이션 순서를 제어 | ||
|
||
## 아일랜드 아키텍처 | ||
|
||
- 정적 사이트 내에 여러 진입점을 가진 도엊ㄱ인 동작의 격리된 영역을 만듬 | ||
|
||
## 점진적 향상 | ||
|
||
- 자바스크립트 없이도 애플리케이션이 작동하도록 보장 |