Skip to content
Advertisement

How to download a ReadableStream on the browser that has been returned from fetch

I am receiving a ReadableStream from a server, returned from my fetch call.

A ReadableStream is returned but I don’t know how to trigger a download from this stage. I can’t use the url in an href because it requires an Authorization token.

I don’t want to install fs on the client so what options do I have?

JavaScript

Update 1

I converted the file to a Blob, then passed it into a newly generated href. Successfully downloaded a file. The end result was the ReadStream contents as a .txt file.

Meaning stuff like this

JavaScript

Advertisement

Answer

I have found 2 solutions, both worked but I was missing a simple addition to make them work.

The native solution is

JavaScript

This version is using the npm package steamSaver for anyone who would prefer it.

JavaScript

The key for why it was not working was because I did not include the extension, so it either errored out because of the mimetype was wrong or it opens a .txt file with a string of the body instead of the image.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement