mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
14 lines
673 B
Plaintext
14 lines
673 B
Plaintext
---
|
|
title: Convert a Node.js Readable to a Blob
|
|
sidebarTitle: Readable to Blob
|
|
mode: center
|
|
---
|
|
|
|
To convert a Node.js `Readable` stream to a [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) in Bun, you can create a new [`Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response) object with the stream as the body, then use [`response.blob()`](https://developer.mozilla.org/en-US/docs/Web/API/Response/blob) to read the stream into a [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob).
|
|
|
|
```ts
|
|
import { Readable } from "stream";
|
|
const stream = Readable.from(["Hello, ", "world!"]);
|
|
const blob = await new Response(stream).blob();
|
|
```
|