WebStorm 2024.3 Help

Run/debug multiple targets

WebStorm provides several ways to run/debug multiple things at once, for example, a client-server app or a complex test, which requires launching several different processes or tasks. The first step in any case would be to create run configurations for each of the tasks or processes that need to be launched. Once all necessary configurations are in place, you have the following options:

When multiple configurations are launched at once, each will be available in a separate tab in the Run or Debug tool window.

ws_run_config_compound_separate_tabs.png

Parallel launch with a compound run/debug configuration

A Compound run configuration lets you launch several run/debug configurations simultaneously.

When you launch a Compound configuration all the configurations in it are started in the same mode, either Run or Debug. Therefore, to start an application in the development mode before debugging its client- and server-sides, run an npm script from package.json, or configure it as a Before Launch task, or create a separate npm run configuration.

Create a compound run/debug configuration

  1. Create a run/debug configuration for each app and process that should be launched in your session.

  2. Go to Run | Edit Configurations. Alternatively, press Alt+Shift+F10, then 0.

    Run/Debug Configurations popup
  3. In the Run/Debug Configurations dialog, click the Add button or press Alt+Insert, then select Compound.

  4. Specify the run/debug configuration name in the Name field. This name will be used to identify the run/debug configuration in lists and menus.

  5. Select Store as project file to make this run/debug configuration available to other team members.

  6. To include a new run/debug configuration into the compound configuration , click Add the Add button and select the desired one from the list.

    Create a compound run/debug configuration
  7. Apply the changes and close the dialog.

Sequential launch with the Before Launch task

You can use run/debug configuration's Before Launch tasks for different tasks, including launching other run/debug configurations. For example, you can add an npm script to a React Native configuration to launch a bundler.

Configure 'Before Launch' tasks

  1. Create a run/debug configuration for each app and process that should be launched in your session.

  2. Go to Run | Edit Configurations. Alternatively, press Alt+Shift+F10, then 0.

    Run/Debug Configurations popup
  3. In the Run/Debug Configuration dialog, select the configuration that should be launched last.

  4. Expand the Before launch area, click Add, and select Run npm script from the Add New Task list.

    Add an npm script as a Before launch task
  5. In the NPM Script dialog, select the script to execute, for example, to launch a bundler, and click OK.

    Add Before Launch task - select npm script to run
  6. Make sure that all necessary scripts are added. Use the Up Alt+Up and Down Alt+Down to arrange the launch order (scripts at the top will be launched first).

  7. Apply the changes and close the dialog.

Last modified: 18 November 2024