05 / 05

Discuss react-dom/static and apis available on it.

The react-dom/static APIs let you generate static HTML for React components. They have limited functionality compared to the streaming APIs. A framework may call them for you. Most of your components don’t need to import or use them.

Static APIs for Web Streams
  1. 1

    prerender renders a React tree to static HTML with a Readable Web Stream.

  2. 2

    These methods are only available in the environments with Web Streams, which includes browsers, Deno, and some modern edge runtimes:

Static APIs for Node.js Streams
  1. 1

    prerenderToNodeStream renders a React tree to static HTML with a Node.js Stream.

  2. 2

    These methods are only available in the environments with Node.js Streams: