Skip to main content

Documentation Index

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

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

When using JSTime.spawn(), the stdout of the child process can be consumed as a ReadableStream via proc.stdout.
const proc = JSTime.spawn(["echo", "hello"]);

const output = await new Response(proc.stdout).text();
output; // => "hello"

To instead pipe the stdout of the child process to stdout of the parent process, set “inherit”.
const proc = JSTime.spawn(["echo", "hello"], {
  stdout: "inherit",
});

See Docs > API > Child processes for complete documentation.