From 09f162b18f972126553ae3e3da532632e1bdf34f Mon Sep 17 00:00:00 2001 From: kohta ito Date: Tue, 12 Mar 2019 19:31:27 +0900 Subject: [PATCH] doc: add Note of options.stdio into child_process PR-URL: https://github.com/nodejs/node/pull/26604 Refs: https://github.com/nodejs/node/pull/22892#issuecomment-469173273 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Bartosz Sosnowski --- doc/api/child_process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index c94fec321eee86..29c445b3269434 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -631,7 +631,8 @@ pipes between the parent and child. The value is one of the following: event has occurred). 6. Positive integer - The integer value is interpreted as a file descriptor that is currently open in the parent process. It is shared with the child - process, similar to how {Stream} objects can be shared. + process, similar to how {Stream} objects can be shared. Passing sockets + is not supported on Windows. 7. `null`, `undefined` - Use default value. For stdio fds 0, 1, and 2 (in other words, stdin, stdout, and stderr) a pipe is created. For fd 3 and up, the default is `'ignore'`.