Skip to content

Commit

Permalink
doc: describe child_process.fork() silent option
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-github authored and tjfontaine committed Jan 16, 2014
1 parent 549be1c commit 198ed0b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,10 @@ leaner than `child_process.exec`. It has the same options.
* `execPath` {String} Executable used to create the child process
* `execArgv` {Array} List of string arguments passed to the executable
(Default: `process.execArgv`)
* `silent` {Boolean} If true, prevent stdout and stderr in the spawned node
process from being associated with the parent's (default is false)
* `silent` {Boolean} If true, stdin, stdout, and stderr of the child will be
piped to the parent, otherwise they will be inherited from the parent, see
the "pipe" and "inherit" options for `spawn()`'s `stdio` for more details
(default is false)
* Return: ChildProcess object

This is a special case of the `spawn()` functionality for spawning Node
Expand Down

0 comments on commit 198ed0b

Please sign in to comment.