Streaming Server-Side Rendering We can reduce the Time To Interactive while still server rendering our application by streaming the contents of our application. Instead of generating one large HTML string containing the necessary markup for the current navigation, we can send the shell first and stream slower parts later. The moment the client receives the first chunks of HTML, it can start parsing and painting the page. Modern React streaming uses on Node runtimes or on Web Stream runtimes, then hydrates the response with on the client. When to Use - Use this when you want to improve TTFB an…