Provide ReadableStream as a download source for streamed download

Searching for “download ReadableStream”, I find two questions:

  1. Download Readablestream as file
  2. How to download a ReadableStream on the browser that has been returned from fetch

Both have answers ending up in collecting all the data in a Blob and using URL.createObjectURL. Yet having a ReadableStream, it is a waste to first create a huge Blob in memory before the browser can start the download operation.

Is there a way to let the client download directly from a ReadableStream, without first collecting all data in memory?

NOTE: this ReadableStream is created by the client from lots of data, so relying on fetch Response objects will hardly be a solution.