Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bun.spawn()
proc.stdout
ReadableStream
const proc = Bun.spawn(["echo", "hello"]); const output = await proc.stdout.text(); output; // => "hello"
const proc = Bun.spawn(["echo", "hello"], { stdout: "inherit", });