使用 Bun.spawn()
时,子进程的 stdout
可通过 proc.stdout
作为 ReadableStream
使用。
const proc = Bun.spawn(["echo", "hello"]);
const output = await new Response(proc.stdout).text();
output; // => "hello"
要将子进程的 stdout
传递到父进程的 stdout
,请设置“inherit”。
const proc = Bun.spawn(["echo", "hello"], {
stdout: "inherit",
});
有关完整文档,请参阅 文档 > API > 子进程。