React Server Components

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2021 Jan 2 12:37
Editor
Edited
Edited
2023 Sep 1 15:23
Refs
Refs

RSC Server to Browser Streaming

The only production-ready implementation of RSCs is currently Next.js 13's new app directory
브라우저를 통해 다운로드 되지 않아서 번들 사이즈에 영향을 주지 않는다
클라이언트는 번들 용량이 줄어들고, 데이터도 빠르게 불러올 수 있음
서버에서 동작하기 때문에 데이터베이스, 파일 시스템 그리고 인터널 서비스 같은 서버 사이드 데이터 소스에 직접 접근
json으로 인코딩 가능한 serializable props만 전달 가능
 
 
 
 
 

Recommendations