@@ -60,8 +60,8 @@ The `child_process.spawn()`, `child_process.fork()`, `child_process.exec()`,
60
60
and ` child_process.execFile() ` methods all follow the idiomatic asynchronous
61
61
programming pattern typical of other Node.js APIs.
62
62
63
- Each of the methods returns a [ ChildProcess] [ ] instance. These objects
64
- implement the Node.js [ EventEmitter] [ ] API, allowing the parent process to
63
+ Each of the methods returns a [ ` ChildProcess ` ] [ ] instance. These objects
64
+ implement the Node.js [ ` EventEmitter ` ] [ ] API, allowing the parent process to
65
65
register listener functions that are called when certain events occur during
66
66
the life cycle of the child process.
67
67
@@ -221,9 +221,8 @@ spawned, behaviors such as I/O redirection and file globbing are not supported.
221
221
(Default: ` process.execArgv ` )
222
222
* ` silent ` {Boolean} If true, stdin, stdout, and stderr of the child will be
223
223
piped to the parent, otherwise they will be inherited from the parent, see
224
- the ` 'pipe' ` and ` 'inherit' ` options for [ ` spawn() ` ] [ ] 's [ ` stdio ` ] [ ] for
225
- more details
226
- (default is false)
224
+ the ` 'pipe' ` and ` 'inherit' ` options for [ ` child_process.spawn() ` ] [ ] 's
225
+ [ ` stdio ` ] [ ] for more details (default is false)
227
226
* ` uid ` {Number} Sets the user identity of the process. (See setuid(2).)
228
227
* ` gid ` {Number} Sets the group identity of the process. (See setgid(2).)
229
228
* Return: ChildProcess object
@@ -922,6 +921,7 @@ then this will be `undefined`.
922
921
to the same value.
923
922
924
923
[ `popen(3)` ] : http://linux.die.net/man/3/popen
924
+ [ `ChildProcess` ] : #child_process_child_process
925
925
[ `child_process.exec()` ] : #child_process_child_process_exec_command_options_callback
926
926
[ `child_process.execFile()` ] : #child_process_child_process_execfile_file_args_options_callback
927
927
[ `child_process.fork()` ] : #child_process_child_process_fork_modulepath_args_options
@@ -930,6 +930,7 @@ to the same value.
930
930
[ `ChildProcess#kill()` ] : #child_process_child_kill_signal
931
931
[ `ChildProcess#send()` ] : #child_process_child_send_message_sendhandle_callback
932
932
[ `Error` ] : errors.html#errors_class_error
933
+ [ `EventEmitter` ] : events.html#events_class_events_eventemitter
933
934
[ `EventEmitters` ] : events.html#events_class_events_eventemitter
934
935
[ `net.Server` ] : net.html#net_class_net_server
935
936
[ `net.Socket` ] : net.html#net_class_net_socket
0 commit comments