Back to Deno

deno_subprocess_windows

runtime/subprocess_windows/src/README.md

2.7.14564 B
Original Source

deno_subprocess_windows

A library for spawning subprocesses on windows, with support for detached processes and passing file descriptors down to child processes.

The code is largely adapted from libuv (line for line in some cases, including comments), with some parts adapted from the rust std library.

The interface mimics std::process::Command, though some types (e.g. Stdio) aren't compatible with the std version.

Note: some parts of the code were initially translated from C by claude code, though it has largely been edited from that starting part.