Instances of the ChildProcess represent spawned child processes.

Instances of ChildProcess are not intended to be created directly. Rather, use the spawn, exec,execFile, or fork methods to create instances of ChildProcess.

Since

v2.2.0

Hierarchy

Constructors

Properties

channel?: null | Pipe

The subprocess.channel property is a reference to the child's IPC channel. If no IPC channel currently exists, this property is undefined.

Since

v7.1.0

connected: boolean

The subprocess.connected property indicates whether it is still possible to send and receive messages from a child process. When subprocess.connected isfalse, it is no longer possible to send or receive messages.

Since

v0.7.2

exitCode: null | number

The subprocess.exitCode property indicates the exit code of the child process. If the child process is still running, the field will be null.

killed: boolean

The subprocess.killed property indicates whether the child process successfully received a signal from subprocess.kill(). The killed property does not indicate that the child process has been terminated.

Since

v0.5.10

pid?: number

Returns the process identifier (PID) of the child process. If the child process fails to spawn due to errors, then the value is undefined and error is emitted.

const { spawn } = require('child_process');
const grep = spawn('grep', ['ssh']);

console.log(`Spawned child pid: ${grep.pid}`);
grep.stdin.end();

Since

v0.1.90

signalCode: null | Signals

The subprocess.signalCode property indicates the signal received by the child process if any, else null.

spawnargs: string[]

The subprocess.spawnargs property represents the full list of command-line arguments the child process was launched with.

spawnfile: string

The subprocess.spawnfile property indicates the executable file name of the child process that is launched.

For fork, its value will be equal to process.execPath. For spawn, its value will be the name of the executable file. For exec, its value will be the name of the shell in which the child process is launched.

stderr: null | Readable

A Readable Stream that represents the child process's stderr.

If the child was spawned with stdio[2] set to anything other than 'pipe', then this will be null.

subprocess.stderr is an alias for subprocess.stdio[2]. Both properties will refer to the same value.

The subprocess.stderr property can be null if the child process could not be successfully spawned.

Since

v0.1.90

stdin: null | Writable

A Writable Stream that represents the child process's stdin.

If a child process waits to read all of its input, the child will not continue until this stream has been closed via end().

If the child was spawned with stdio[0] set to anything other than 'pipe', then this will be null.

subprocess.stdin is an alias for subprocess.stdio[0]. Both properties will refer to the same value.

The subprocess.stdin property can be undefined if the child process could not be successfully spawned.

Since

v0.1.90

stdio: [null | Writable, null | Readable, null | Readable, undefined | null | Readable | Writable, undefined | null | Readable | Writable]

A sparse array of pipes to the child process, corresponding with positions in the stdio option passed to spawn that have been set to the value 'pipe'. subprocess.stdio[0], subprocess.stdio[1], andsubprocess.stdio[2] are also available as subprocess.stdin,subprocess.stdout, and subprocess.stderr, respectively.

In the following example, only the child's fd 1 (stdout) is configured as a pipe, so only the parent's subprocess.stdio[1] is a stream, all other values in the array are null.

const assert = require('assert');
const fs = require('fs');
const child_process = require('child_process');

const subprocess = child_process.spawn('ls', {
stdio: [
0, // Use parent's stdin for child.
'pipe', // Pipe child's stdout to parent.
fs.openSync('err.out', 'w'), // Direct child's stderr to a file.
]
});

assert.strictEqual(subprocess.stdio[0], null);
assert.strictEqual(subprocess.stdio[0], subprocess.stdin);

assert(subprocess.stdout);
assert.strictEqual(subprocess.stdio[1], subprocess.stdout);

assert.strictEqual(subprocess.stdio[2], null);
assert.strictEqual(subprocess.stdio[2], subprocess.stderr);

The subprocess.stdio property can be undefined if the child process could not be successfully spawned.

Since

v0.7.10

stdout: null | Readable

A Readable Stream that represents the child process's stdout.

If the child was spawned with stdio[1] set to anything other than 'pipe', then this will be null.

subprocess.stdout is an alias for subprocess.stdio[1]. Both properties will refer to the same value.

const { spawn } = require('child_process');

const subprocess = spawn('ls');

subprocess.stdout.on('data', (data) => {
console.log(`Received chunk ${data}`);
});

The subprocess.stdout property can be null if the child process could not be successfully spawned.

Since

v0.1.90

captureRejectionSymbol: typeof captureRejectionSymbol
captureRejections: boolean

TODO: These should be described using static getter/setter pairs:

defaultMaxListeners: number
errorMonitor: typeof errorMonitor

This symbol shall be used to install a listener for only monitoring 'error' events. Listeners installed using this symbol are called before the regular 'error' listeners are called.

Installing a listener using this symbol does not change the behavior once an 'error' event is emitted, therefore the process will still crash if no regular 'error' listener is installed.

Methods

  • events.EventEmitter

    1. close
    2. disconnect
    3. error
    4. exit
    5. message
    6. spawn

    Parameters

    • event: string
    • listener: ((...args: any[]) => void)
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "close"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "disconnect"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Parameters

    • event: "error"
    • listener: ((err: Error) => void)
        • (err: Error): void
        • Parameters

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "exit"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    Returns ChildProcess

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Closes the IPC channel between parent and child, allowing the child to exit gracefully once there are no other connections keeping it alive. After calling this method the subprocess.connected and process.connected properties in both the parent and child (respectively) will be set to false, and it will be no longer possible to pass messages between the processes.

    The 'disconnect' event will be emitted when there are no messages in the process of being received. This will most often be triggered immediately after calling subprocess.disconnect().

    When the child process is a Node.js instance (e.g. spawned using fork), the process.disconnect() method can be invoked within the child process to close the IPC channel as well.

    Since

    v0.7.2

    Returns void

  • Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments to each.

    Returns true if the event had listeners, false otherwise.

    const EventEmitter = require('events');
    const myEmitter = new EventEmitter();

    // First listener
    myEmitter.on('event', function firstListener() {
    console.log('Helloooo! first listener');
    });
    // Second listener
    myEmitter.on('event', function secondListener(arg1, arg2) {
    console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
    });
    // Third listener
    myEmitter.on('event', function thirdListener(...args) {
    const parameters = args.join(', ');
    console.log(`event with parameters ${parameters} in third listener`);
    });

    console.log(myEmitter.listeners('event'));

    myEmitter.emit('event', 1, 2, 3, 4, 5);

    // Prints:
    // [
    // [Function: firstListener],
    // [Function: secondListener],
    // [Function: thirdListener]
    // ]
    // Helloooo! first listener
    // event with parameters 1, 2 in second listener
    // event with parameters 1, 2, 3, 4, 5 in third listener

    Since

    v0.1.26

    Parameters

    • event: string | symbol
    • Rest ...args: any[]

    Returns boolean

  • Parameters

    • event: "close"
    • code: null | number
    • signal: null | Signals

    Returns boolean

  • Parameters

    • event: "disconnect"

    Returns boolean

  • Parameters

    • event: "error"
    • err: Error

    Returns boolean

  • Parameters

    • event: "exit"
    • code: null | number
    • signal: null | Signals

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns boolean

  • Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbols.

    const EventEmitter = require('events');
    const myEE = new EventEmitter();
    myEE.on('foo', () => {});
    myEE.on('bar', () => {});

    const sym = Symbol('symbol');
    myEE.on(sym, () => {});

    console.log(myEE.eventNames());
    // Prints: [ 'foo', 'bar', Symbol(symbol) ]

    Since

    v6.0.0

    Returns (string | symbol)[]

  • Returns the current max listener value for the EventEmitter which is either set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    Since

    v1.0.0

    Returns number

  • The subprocess.kill() method sends a signal to the child process. If no argument is given, the process will be sent the 'SIGTERM' signal. See signal(7) for a list of available signals. This function returns true if kill(2) succeeds, and false otherwise.

    const { spawn } = require('child_process');
    const grep = spawn('grep', ['ssh']);

    grep.on('close', (code, signal) => {
    console.log(
    `child process terminated due to receipt of signal ${signal}`);
    });

    // Send SIGHUP to process.
    grep.kill('SIGHUP');

    The ChildProcess object may emit an 'error' event if the signal cannot be delivered. Sending a signal to a child process that has already exited is not an error but may have unforeseen consequences. Specifically, if the process identifier (PID) has been reassigned to another process, the signal will be delivered to that process instead which can have unexpected results.

    While the function is called kill, the signal delivered to the child process may not actually terminate the process.

    See kill(2) for reference.

    On Windows, where POSIX signals do not exist, the signal argument will be ignored, and the process will be killed forcefully and abruptly (similar to'SIGKILL'). See Signal Events for more details.

    On Linux, child processes of child processes will not be terminated when attempting to kill their parent. This is likely to happen when running a new process in a shell or with the use of the shell option of ChildProcess:

    'use strict';
    const { spawn } = require('child_process');

    const subprocess = spawn(
    'sh',
    [
    '-c',
    `node -e "setInterval(() => {
    console.log(process.pid, 'is alive')
    }, 500);"`,
    ], {
    stdio: ['inherit', 'inherit', 'inherit']
    }
    );

    setTimeout(() => {
    subprocess.kill(); // Does not terminate the Node.js process in the shell.
    }, 2000);

    Since

    v0.1.90

    Parameters

    Returns boolean

  • Returns the number of listeners listening to the event named eventName.

    Since

    v3.2.0

    Parameters

    • eventName: string | symbol

      The name of the event being listened for

    Returns number

  • Returns a copy of the array of listeners for the event named eventName.

    server.on('connection', (stream) => {
    console.log('someone connected!');
    });
    console.log(util.inspect(server.listeners('connection')));
    // Prints: [ [Function] ]

    Since

    v0.1.26

    Parameters

    • eventName: string | symbol

    Returns Function[]

  • Alias for emitter.removeListener().

    Since

    v10.0.0

    Parameters

    • eventName: string | symbol
    • listener: ((...args: any[]) => void)
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Adds the listener function to the end of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

    server.on('connection', (stream) => {
    console.log('someone connected!');
    });

    Returns a reference to the EventEmitter, so that calls can be chained.

    By default, event listeners are invoked in the order they are added. Theemitter.prependListener() method can be used as an alternative to add the event listener to the beginning of the listeners array.

    const myEE = new EventEmitter();
    myEE.on('foo', () => console.log('a'));
    myEE.prependListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a

    Since

    v0.1.101

    Parameters

    • event: string

      The name of the event.

    • listener: ((...args: any[]) => void)

      The callback function

        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "close"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "disconnect"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Parameters

    • event: "error"
    • listener: ((err: Error) => void)
        • (err: Error): void
        • Parameters

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "exit"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    Returns ChildProcess

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Adds a one-timelistener function for the event named eventName. The next time eventName is triggered, this listener is removed and then invoked.

    server.once('connection', (stream) => {
    console.log('Ah, we have our first user!');
    });

    Returns a reference to the EventEmitter, so that calls can be chained.

    By default, event listeners are invoked in the order they are added. Theemitter.prependOnceListener() method can be used as an alternative to add the event listener to the beginning of the listeners array.

    const myEE = new EventEmitter();
    myEE.once('foo', () => console.log('a'));
    myEE.prependOnceListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a

    Since

    v0.3.0

    Parameters

    • event: string

      The name of the event.

    • listener: ((...args: any[]) => void)

      The callback function

        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "close"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "disconnect"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Parameters

    • event: "error"
    • listener: ((err: Error) => void)
        • (err: Error): void
        • Parameters

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "exit"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    Returns ChildProcess

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

    server.prependListener('connection', (stream) => {
    console.log('someone connected!');
    });

    Returns a reference to the EventEmitter, so that calls can be chained.

    Since

    v6.0.0

    Parameters

    • event: string

      The name of the event.

    • listener: ((...args: any[]) => void)

      The callback function

        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "close"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "disconnect"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Parameters

    • event: "error"
    • listener: ((err: Error) => void)
        • (err: Error): void
        • Parameters

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "exit"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    Returns ChildProcess

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Adds a one-timelistener function for the event named eventName to the beginning of the listeners array. The next time eventName is triggered, this listener is removed, and then invoked.

    server.prependOnceListener('connection', (stream) => {
    console.log('Ah, we have our first user!');
    });

    Returns a reference to the EventEmitter, so that calls can be chained.

    Since

    v6.0.0

    Parameters

    • event: string

      The name of the event.

    • listener: ((...args: any[]) => void)

      The callback function

        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "close"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "disconnect"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Parameters

    • event: "error"
    • listener: ((err: Error) => void)
        • (err: Error): void
        • Parameters

          Returns void

    Returns ChildProcess

  • Parameters

    • event: "exit"
    • listener: ((code: null | number, signal: null | Signals) => void)
        • (code: null | number, signal: null | Signals): void
        • Parameters

          • code: null | number
          • signal: null | Signals

          Returns void

    Returns ChildProcess

  • Parameters

    Returns ChildProcess

  • Parameters

    • event: "spawn"
    • listener: (() => void)
        • (): void
        • Returns void

    Returns ChildProcess

  • Returns a copy of the array of listeners for the event named eventName, including any wrappers (such as those created by .once()).

    const emitter = new EventEmitter();
    emitter.once('log', () => console.log('log once'));

    // Returns a new Array with a function `onceWrapper` which has a property
    // `listener` which contains the original listener bound above
    const listeners = emitter.rawListeners('log');
    const logFnWrapper = listeners[0];

    // Logs "log once" to the console and does not unbind the `once` event
    logFnWrapper.listener();

    // Logs "log once" to the console and removes the listener
    logFnWrapper();

    emitter.on('log', () => console.log('log persistently'));
    // Will return a new Array with a single function bound by `.on()` above
    const newListeners = emitter.rawListeners('log');

    // Logs "log persistently" twice
    newListeners[0]();
    emitter.emit('log');

    Since

    v9.4.0

    Parameters

    • eventName: string | symbol

    Returns Function[]

  • Calling subprocess.ref() after making a call to subprocess.unref() will restore the removed reference count for the child process, forcing the parent to wait for the child to exit before exiting itself.

    const { spawn } = require('child_process');

    const subprocess = spawn(process.argv[0], ['child_program.js'], {
    detached: true,
    stdio: 'ignore'
    });

    subprocess.unref();
    subprocess.ref();

    Since

    v0.7.10

    Returns void

  • Removes all listeners, or those of the specified eventName.

    It is bad practice to remove listeners added elsewhere in the code, particularly when the EventEmitter instance was created by some other component or module (e.g. sockets or file streams).

    Returns a reference to the EventEmitter, so that calls can be chained.

    Since

    v0.1.26

    Parameters

    • Optional event: string | symbol

    Returns ChildProcess

  • Removes the specified listener from the listener array for the event namedeventName.

    const callback = (stream) => {
    console.log('someone connected!');
    };
    server.on('connection', callback);
    // ...
    server.removeListener('connection', callback);

    removeListener() will remove, at most, one instance of a listener from the listener array. If any single listener has been added multiple times to the listener array for the specified eventName, then removeListener() must be called multiple times to remove each instance.

    Once an event is emitted, all listeners attached to it at the time of emitting are called in order. This implies that anyremoveListener() or removeAllListeners() calls after emitting and before the last listener finishes execution will not remove them fromemit() in progress. Subsequent events behave as expected.

    const myEmitter = new MyEmitter();

    const callbackA = () => {
    console.log('A');
    myEmitter.removeListener('event', callbackB);
    };

    const callbackB = () => {
    console.log('B');
    };

    myEmitter.on('event', callbackA);

    myEmitter.on('event', callbackB);

    // callbackA removes listener callbackB but it will still be called.
    // Internal listener array at time of emit [callbackA, callbackB]
    myEmitter.emit('event');
    // Prints:
    // A
    // B

    // callbackB is now removed.
    // Internal listener array [callbackA]
    myEmitter.emit('event');
    // Prints:
    // A

    Because listeners are managed using an internal array, calling this will change the position indices of any listener registered after the listener being removed. This will not impact the order in which listeners are called, but it means that any copies of the listener array as returned by the emitter.listeners() method will need to be recreated.

    When a single function has been added as a handler multiple times for a single event (as in the example below), removeListener() will remove the most recently added instance. In the example the once('ping')listener is removed:

    const ee = new EventEmitter();

    function pong() {
    console.log('pong');
    }

    ee.on('ping', pong);
    ee.once('ping', pong);
    ee.removeListener('ping', pong);

    ee.emit('ping');
    ee.emit('ping');

    Returns a reference to the EventEmitter, so that calls can be chained.

    Since

    v0.1.26

    Parameters

    • eventName: string | symbol
    • listener: ((...args: any[]) => void)
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns ChildProcess

  • When an IPC channel has been established between the parent and child ( i.e. when using fork), the subprocess.send() method can be used to send messages to the child process. When the child process is a Node.js instance, these messages can be received via the 'message' event.

    The message goes through serialization and parsing. The resulting message might not be the same as what is originally sent.

    For example, in the parent script:

    const cp = require('child_process');
    const n = cp.fork(`${__dirname}/sub.js`);

    n.on('message', (m) => {
    console.log('PARENT got message:', m);
    });

    // Causes the child to print: CHILD got message: { hello: 'world' }
    n.send({ hello: 'world' });

    And then the child script, 'sub.js' might look like this:

    process.on('message', (m) => {
    console.log('CHILD got message:', m);
    });

    // Causes the parent to print: PARENT got message: { foo: 'bar', baz: null }
    process.send({ foo: 'bar', baz: NaN });

    Child Node.js processes will have a process.send() method of their own that allows the child to send messages back to the parent.

    There is a special case when sending a {cmd: 'NODE_foo'} message. Messages containing a NODE_ prefix in the cmd property are reserved for use within Node.js core and will not be emitted in the child's 'message' event. Rather, such messages are emitted using the'internalMessage' event and are consumed internally by Node.js. Applications should avoid using such messages or listening for'internalMessage' events as it is subject to change without notice.

    The optional sendHandle argument that may be passed to subprocess.send() is for passing a TCP server or socket object to the child process. The child will receive the object as the second argument passed to the callback function registered on the 'message' event. Any data that is received and buffered in the socket will not be sent to the child.

    The optional callback is a function that is invoked after the message is sent but before the child may have received it. The function is called with a single argument: null on success, or an Error object on failure.

    If no callback function is provided and the message cannot be sent, an'error' event will be emitted by the ChildProcess object. This can happen, for instance, when the child process has already exited.

    subprocess.send() will return false if the channel has closed or when the backlog of unsent messages exceeds a threshold that makes it unwise to send more. Otherwise, the method returns true. The callback function can be used to implement flow control.

    Example: sending a server object

    The sendHandle argument can be used, for instance, to pass the handle of a TCP server object to the child process as illustrated in the example below:

    const subprocess = require('child_process').fork('subprocess.js');

    // Open up the server object and send the handle.
    const server = require('net').createServer();
    server.on('connection', (socket) => {
    socket.end('handled by parent');
    });
    server.listen(1337, () => {
    subprocess.send('server', server);
    });

    The child would then receive the server object as:

    process.on('message', (m, server) => {
    if (m === 'server') {
    server.on('connection', (socket) => {
    socket.end('handled by child');
    });
    }
    });

    Once the server is now shared between the parent and child, some connections can be handled by the parent and some by the child.

    While the example above uses a server created using the net module, dgrammodule servers use exactly the same workflow with the exceptions of listening on a 'message' event instead of 'connection' and using server.bind() instead of server.listen(). This is, however, currently only supported on Unix platforms.

    Example: sending a socket object

    Similarly, the sendHandler argument can be used to pass the handle of a socket to the child process. The example below spawns two children that each handle connections with "normal" or "special" priority:

    const { fork } = require('child_process');
    const normal = fork('subprocess.js', ['normal']);
    const special = fork('subprocess.js', ['special']);

    // Open up the server and send sockets to child. Use pauseOnConnect to prevent
    // the sockets from being read before they are sent to the child process.
    const server = require('net').createServer({ pauseOnConnect: true });
    server.on('connection', (socket) => {

    // If this is special priority...
    if (socket.remoteAddress === '74.125.127.100') {
    special.send('socket', socket);
    return;
    }
    // This is normal priority.
    normal.send('socket', socket);
    });
    server.listen(1337);

    The subprocess.js would receive the socket handle as the second argument passed to the event callback function:

    process.on('message', (m, socket) => {
    if (m === 'socket') {
    if (socket) {
    // Check that the client socket exists.
    // It is possible for the socket to be closed between the time it is
    // sent and the time it is received in the child process.
    socket.end(`Request handled with ${process.argv[2]} priority`);
    }
    }
    });

    Do not use .maxConnections on a socket that has been passed to a subprocess. The parent cannot track when the socket is destroyed.

    Any 'message' handlers in the subprocess should verify that socket exists, as the connection may have been closed during the time it takes to send the connection to the child.

    Since

    v0.5.9

    Parameters

    • message: Serializable
    • Optional callback: ((error: null | Error) => void)
        • (error: null | Error): void
        • Parameters

          Returns void

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • By default EventEmitters will print a warning if more than 10 listeners are added for a particular event. This is a useful default that helps finding memory leaks. The emitter.setMaxListeners() method allows the limit to be modified for this specific EventEmitter instance. The value can be set toInfinity (or 0) to indicate an unlimited number of listeners.

    Returns a reference to the EventEmitter, so that calls can be chained.

    Since

    v0.3.5

    Parameters

    • n: number

    Returns ChildProcess

  • By default, the parent will wait for the detached child to exit. To prevent the parent from waiting for a given subprocess to exit, use thesubprocess.unref() method. Doing so will cause the parent's event loop to not include the child in its reference count, allowing the parent to exit independently of the child, unless there is an established IPC channel between the child and the parent.

    const { spawn } = require('child_process');

    const subprocess = spawn(process.argv[0], ['child_program.js'], {
    detached: true,
    stdio: 'ignore'
    });

    subprocess.unref();

    Since

    v0.7.10

    Returns void

  • Returns a copy of the array of listeners for the event named eventName.

    For EventEmitters this behaves exactly the same as calling .listeners on the emitter.

    For EventTargets this is the only way to get the event listeners for the event target. This is useful for debugging and diagnostic purposes.

    const { getEventListeners, EventEmitter } = require('events');

    {
    const ee = new EventEmitter();
    const listener = () => console.log('Events are fun');
    ee.on('foo', listener);
    getEventListeners(ee, 'foo'); // [listener]
    }
    {
    const et = new EventTarget();
    const listener = () => console.log('Events are fun');
    et.addEventListener('foo', listener);
    getEventListeners(et, 'foo'); // [listener]
    }

    Since

    v15.2.0, v14.17.0

    Parameters

    Returns Function[]

  • A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    const { EventEmitter, listenerCount } = require('events');
    const myEmitter = new EventEmitter();
    myEmitter.on('event', () => {});
    myEmitter.on('event', () => {});
    console.log(listenerCount(myEmitter, 'event'));
    // Prints: 2

    Since

    v0.9.12

    Deprecated

    Since v3.2.0 - Use listenerCount instead.

    Parameters

    • emitter: EventEmitter

      The emitter to query

    • eventName: string | symbol

      The event name

    Returns number

  • const { on, EventEmitter } = require('events');

    (async () => {
    const ee = new EventEmitter();

    // Emit later on
    process.nextTick(() => {
    ee.emit('foo', 'bar');
    ee.emit('foo', 42);
    });

    for await (const event of on(ee, 'foo')) {
    // The execution of this inner block is synchronous and it
    // processes one event at a time (even with await). Do not use
    // if concurrent execution is required.
    console.log(event); // prints ['bar'] [42]
    }
    // Unreachable here
    })();

    Returns an AsyncIterator that iterates eventName events. It will throw if the EventEmitter emits 'error'. It removes all listeners when exiting the loop. The value returned by each iteration is an array composed of the emitted event arguments.

    An AbortSignal can be used to cancel waiting on events:

    const { on, EventEmitter } = require('events');
    const ac = new AbortController();

    (async () => {
    const ee = new EventEmitter();

    // Emit later on
    process.nextTick(() => {
    ee.emit('foo', 'bar');
    ee.emit('foo', 42);
    });

    for await (const event of on(ee, 'foo', { signal: ac.signal })) {
    // The execution of this inner block is synchronous and it
    // processes one event at a time (even with await). Do not use
    // if concurrent execution is required.
    console.log(event); // prints ['bar'] [42]
    }
    // Unreachable here
    })();

    process.nextTick(() => ac.abort());

    Since

    v13.6.0, v12.16.0

    Returns

    that iterates eventName events emitted by the emitter

    Parameters

    Returns AsyncIterableIterator<any>

  • Creates a Promise that is fulfilled when the EventEmitter emits the given event or that is rejected if the EventEmitter emits 'error' while waiting. The Promise will resolve with an array of all the arguments emitted to the given event.

    This method is intentionally generic and works with the web platform EventTarget interface, which has no special'error' event semantics and does not listen to the 'error' event.

    const { once, EventEmitter } = require('events');

    async function run() {
    const ee = new EventEmitter();

    process.nextTick(() => {
    ee.emit('myevent', 42);
    });

    const [value] = await once(ee, 'myevent');
    console.log(value);

    const err = new Error('kaboom');
    process.nextTick(() => {
    ee.emit('error', err);
    });

    try {
    await once(ee, 'myevent');
    } catch (err) {
    console.log('error happened', err);
    }
    }

    run();

    The special handling of the 'error' event is only used when events.once()is used to wait for another event. If events.once() is used to wait for the 'error' event itself, then it is treated as any other kind of event without special handling:

    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();

    once(ee, 'error')
    .then(([err]) => console.log('ok', err.message))
    .catch((err) => console.log('error', err.message));

    ee.emit('error', new Error('boom'));

    // Prints: ok boom

    An AbortSignal can be used to cancel waiting for the event:

    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();
    const ac = new AbortController();

    async function foo(emitter, event, signal) {
    try {
    await once(emitter, event, { signal });
    console.log('event emitted!');
    } catch (error) {
    if (error.name === 'AbortError') {
    console.error('Waiting for the event was canceled!');
    } else {
    console.error('There was an error', error.message);
    }
    }
    }

    foo(ee, 'foo', ac.signal);
    ac.abort(); // Abort waiting for the event
    ee.emit('foo'); // Prints: Waiting for the event was canceled!

    Since

    v11.13.0, v10.16.0

    Parameters

    Returns Promise<any[]>

  • Parameters

    Returns Promise<any[]>

  • const {
    setMaxListeners,
    EventEmitter
    } = require('events');

    const target = new EventTarget();
    const emitter = new EventEmitter();

    setMaxListeners(5, target, emitter);

    Since

    v15.4.0

    Parameters

    • Optional n: number

      A non-negative number. The maximum number of listeners per EventTarget event.

    • Rest ...eventTargets: (EventEmitter | _DOMEventTarget)[]

    Returns void