diff --git a/doc/api/child_process.md b/doc/api/child_process.md index dfe787d6f3cd89..6fe6079d4e84a4 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -776,6 +776,16 @@ added: v0.5.9 The `'message'` event is triggered when a child process uses [`process.send()`][] to send messages. +### child.channel + + +* {Object} A pipe representing the IPC channel to the child process. + +The `child.channel` property is a reference to the child's IPC channel. If no +IPC channel currently exists, this property is `undefined`. + ### child.connected + +If the Node.js process was spawned with an IPC channel (see the +[Child Process][] documentation), the `process.channel` +property is a reference to the IPC channel. If no IPC channel exists, this +property is `undefined`. + ## process.chdir(directory)