renderToStream
Edit this pageThis method renders to a stream. It renders the content synchronously including any Suspense fallback placeholders, and then continues to stream the data and HTML from any async resource as it completes.
onCompleteShell
fires when synchronous rendering is complete before writing the first flush to the stream out to the browser.
onCompleteAll
is called when all server Suspense boundaries have settled.
renderId
is used to namespace renders when having multiple top level roots.
Info:
This API replaces the previous pipeToWritable and pipeToNodeWritable APIs.
Options
Name | Type | Description |
---|---|---|
nonce | string | The nonce to use for inline scripts. |
renderId | string | The id to use for this render. |
onCompleteShell | () => void | A callback that fires when the shell is complete. |
onCompleteAll | () => void | A callback that fires when all Suspense boundaries have settled. |