PRR (Partial / Progressive Rendering)

noun · web performance

1.

A web rendering technique where the critical elements of a page are sent and displayed first, while secondary components are loaded progressively — reducing perceived load time and improving Core Web Vitals.

2.

A performance architecture adopted by modern frameworks like Next.js and React, which allows HTML to be streamed in chunks to the browser via mechanisms such as Suspense and streaming SSR, avoiding the monolithic wait for a complete page.

3.

An optimization strategy that decouples the rendering of heavy components (charts, large lists, third-party widgets) from the rendering of the main content, guaranteeing instant display of essential information on all devices.

See also
Core Web VitalsHydrationReactUX