Is there a way to use code from example here: https://medium.com/the-thinkmill/progressive-rendering-the-key-to-faster-web-ebfbbece41a4   How to progressively render a page? Node.js has this Readable API which will let you pipe a readable stream. An example code to stream HTML might look like this router.get("/stream", async function(req, res, next) { res.status(200); res.type("text/html; charset=utf-8");// myRendered renders the HTML content const DOCTYPE = await myRendere