You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/api/child_process.markdown
+8-8
Original file line number
Diff line number
Diff line change
@@ -222,7 +222,7 @@ See `kill(2)`
222
222
*`callback` {Function}
223
223
* Return: Boolean
224
224
225
-
When using `child_process.fork()` you can write to the child using
225
+
When using [`child_process.fork()`](#child_process_child_process_fork_modulepath_args_options) you can write to the child using
226
226
`child.send(message[, sendHandle][, callback])` and messages are received by
227
227
a `'message'` event on the child.
228
228
@@ -539,7 +539,7 @@ will not stay running in the background unless it is provided with a `stdio`
539
539
configuration that is not connected to the parent. If the parent's `stdio` is
540
540
inherited, the child will remain attached to the controlling terminal.
541
541
542
-
See also: `child_process.exec()` and `child_process.fork()`
542
+
See also: [`child_process.exec()`](#child_process_child_process_exec_command_options_callback) and [`child_process.fork()`](#child_process_child_process_fork_modulepath_args_options)
0 commit comments