On this page

    E

    online

    History
    Attributes

    After forking a new worker, the worker should respond with an online message. When the primary receives an online message it will emit this event. The difference between 'fork' and 'online' is that fork is emitted when the primary forks a worker, and 'online' is emitted when the worker is running.

    cluster.on('online', (worker) => {
      console.log('Yay, the worker responded after it was forked');
    });