Documentation Index

Fetch the complete documentation index at: /docs/llms.txt

Use this file to discover all available pages before exploring further.

Skip to main content
To convert a Node.js Readable stream to a Uint8Array in Bun, create a Response with the stream as the body, then call bytes().
import { Readable } from "stream";
const stream = Readable.from(["Hello, ", "world!"]);
const buf = await new Response(stream).bytes();
Morty Proxy This is a proxified and sanitized view of the page, visit original site.