React Server Components
React Server Components (RSC) are a React component type that renders exclusively on the server, never shipping its component code or dependencies to the client, and can be seamlessly mixed with traditional client components in a single component tree. They enable server-side data fetching directly inside components…
9 resources across 3 libraries
Glossary Terms(7)
Pure Function
A pure function is a function whose output depends only on its input arguments and which produces no observable side effects, such as mutating external state,…
Remix (framework)
Remix is an open-source, full-stack React web framework built around web standards — nested routing, server-side rendering, and native HTML forms for data muta…
Partial Hydration
Partial hydration is a rendering strategy in which only specific interactive portions of a server-rendered page are hydrated with JavaScript on the client, whi…
Islands Architecture
Islands Architecture is a web application design pattern in which a page is rendered mostly as static HTML, with small, independent, interactive 'islands' of c…
Streaming SSR
Streaming server-side rendering (streaming SSR) sends HTML to the browser incrementally as it is generated on the server, rather than waiting for the entire pa…
React Server Components
React Server Components (RSC) are a React component type that renders exclusively on the server, never shipping its component code or dependencies to the clien…
Suspense (React)
Suspense is a React component and mechanism that lets a component tree 'wait' for something — such as data, code, or an image — to load before rendering, displ…