Browse Source

doc: list execArgv option for child_process.fork()

v0.10.23-release
Yazhong Liu 11 years ago
committed by Timothy J Fontaine
parent
commit
bd7fa92de4
  1. 2
      doc/api/child_process.markdown

2
doc/api/child_process.markdown

@ -555,6 +555,8 @@ leaner than `child_process.exec`. It has the same options.
* `env` {Object} Environment key-value pairs * `env` {Object} Environment key-value pairs
* `encoding` {String} (Default: 'utf8') * `encoding` {String} (Default: 'utf8')
* `execPath` {String} Executable used to create the child process * `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 * `silent` {Boolean} If true, prevent stdout and stderr in the spawned node
process from being associated with the parent's (default is false) process from being associated with the parent's (default is false)
* Return: ChildProcess object * Return: ChildProcess object

Loading…
Cancel
Save