IntelliJ IDEA 2021.2 Help

Multiprocess debugging

With IntelliJ IDEA, you can debug additional Node.js processes that are launched by the child_process.fork() method or by the cluster module. Such processes are shown as threads in the Frames pane on the Debugger tab of the Debug tool window.

Node.js application: Multi-process debugging
  1. Set the breakpoints in the processes to debug.

  2. Create a Node.js run/debug configuration as described in Running and Debugging Node.js.

  3. Select the newly created configuration from the Select run/debug configuration list on the toolbar and click Debug the Debug button.

    The Debug tool window opens and the Frames list shows the additional processes as threads as soon as they are launched.

    To examine the data (variables, watches, and so on) for a process, select its thread in the list and view its data in the Variables and Watches panes. When you select another process, the contents of the panes are updated accordingly.

Last modified: 02 August 2022