Use fetch to get the stream. Using response.body gives you a ReadableStream , allowing you to read data chunk-by-chunk rather than waiting for the whole file.
Use fetch to get the stream. Using response.body gives you a ReadableStream , allowing you to read data chunk-by-chunk rather than waiting for the whole file.