# React Server Components 발표 (RFC)

> Clean Markdown view of GeekNews topic #3478. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=3478](https://news.hada.io/topic?id=3478)
- GeekNews Markdown: [https://news.hada.io/topic/3478.md](https://news.hada.io/topic/3478.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2020-12-27T10:13:28+09:00
- Updated: 2020-12-27T10:13:28+09:00
- Original source: [reactjs.org](https://reactjs.org/blog/2020/12/21/data-fetching-with-react-server-components.html?utm_source=labnotes.org)
- Points: 8
- Comments: 2

## Topic Body

- 서버 컴포넌트는 서버에서 실행되며 클라이언트 번들크기엔 변화 없음

- DB,파일시스템,마이크로 서비스등의 서버측 데이터소스에 접근가능

- 클라이언트 컴포넌트와 심리스한 연동

- 동적으로 렌더링할 클라이언트 컴포넌트를 선택 가능해서 최소한의 렌더링 코드만 클라이언트로 전송

- 서버 컴포넌트가 리로드 되더라도 클라이언트 상태를 유지

- 점진적으로 렌더링 되며, 조금씩 클라이언트에 UI를 스트리밍 가능해서, Suspense 와 연동하면 로딩상태를 마음대로 조작이 가능하고 가장 중요한 콘텐츠만 먼저 보인 후에 나머지 부분을 로딩하는 것이 가능

- 서버와 클라이언트 코드 공유 가능

## Comments



### Comment 4035

- Author: ragingwind
- Created: 2020-12-28T13:04:14+09:00
- Points: 1

추가로 기존의 SSR 과 비교한 글도 같이 보시면 좋겠네요. https://addyosmani.com/blog/react-server-components

### Comment 4025

- Author: lannex
- Created: 2020-12-27T15:33:19+09:00
- Points: 1

아직 개발 중이라 바로 사용하긴 어렵겠지만 앞으로가 기대되네요.
