summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYazhong Liu <yorkiefixer@gmail.com>2013-12-02 13:31:06 +0800
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-12-02 13:41:30 -0800
commitbd7fa92de421048b0eb8fb810eb66829424fc07f (patch)
tree0e45e2afc9a67a9a835bde0e4b8a70a85f1a9eea
parent94c4ba9dd33bf6d1ab4936f5d4039ecf7957bb32 (diff)
downloadnode-bd7fa92de421048b0eb8fb810eb66829424fc07f.tar.gz
doc: list execArgv option for child_process.fork()
-rw-r--r--doc/api/child_process.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown
index 40cd18352..7b51902d3 100644
--- a/doc/api/child_process.markdown
+++ b/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
* `encoding` {String} (Default: 'utf8')
* `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)
* Return: ChildProcess object