mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
15 lines
623 B
Plaintext
15 lines
623 B
Plaintext
---
|
|
title: Convert a Node.js Readable to JSON
|
|
sidebarTitle: Readable to JSON
|
|
mode: center
|
|
---
|
|
|
|
To convert a Node.js `Readable` stream to a JSON object 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.json()`](https://developer.mozilla.org/en-US/docs/Web/API/Response/json) to read the stream into a JSON object.
|
|
|
|
```ts
|
|
import { Readable } from "stream";
|
|
const stream = Readable.from([JSON.stringify({ hello: "world" })]);
|
|
const json = await new Response(stream).json();
|
|
console.log(json); // { hello: "world" }
|
|
```
|