From 6d78e01ac66bf1a806eef0ad1e28fcde12491466 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 --- 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 a6064ee3c7545f..cbd0a1b0787826 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -637,7 +637,8 @@ pipes between the parent and child. The value is one of the following: 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'`.