1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 01:29:14 -05:00
denoland-deno/tests/specs/node/stdio_ipc
Divy Srivastava 8994b51771
fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106)
Add supports for "ipc" and fd options in child_process spawn API.

Internal changes: Adds a hidden rid and "ipc_for_internal_use" option to
Deno.Command. Used by `node:child_process`

Example:
```js
const out = fs.openSync("./logfile.txt", 'a')
const proc = spawn(process.execPath, ["./main.mjs", "child"], {
  stdio: ["ipc", out, "inherit"]
});
```

Ref #16753
2024-06-12 17:14:59 -07:00
..
__test__.jsonc fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106) 2024-06-12 17:14:59 -07:00
main.mjs fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106) 2024-06-12 17:14:59 -07:00
main.out fix(ext/node): support stdin child_process IPC & fd stdout/stderr (#24106) 2024-06-12 17:14:59 -07:00