GoLand 2019.2 Help

Configuring JavaScript debugger

Debugging JavaScript in GoLand is supported through the JavaScript Debugger plugin. The plugin is activated by default. If the plugin is disabled, enable it on the Plugins page as described in Managing plugins.

Debugging of JavaScript code is supported in Google Chrome and other browsers of the Chrome family.

To ensure successful debugging, it is enough to specify the built-in web server port and accept the default settings that GoLand suggests for other debugger options.

To set the built-in web server port

  1. In the Settings/Preferences dialog (Ctrl+Alt+S), go to Build, Execution, Deployment | Debugger.

  2. In the Built-in server area, specify the port where the built-in web server runs. By default this port is set to the default GoLand port 63342 through which GoLand accepts connections from services. You can set the port number to any other value starting with 1024 and later.

Optionally

  • Suppress calls to the files on the built-in server from other computers or from outside GoLand by clearing the Can accept external connections or Allow unsigned requests checkbox respectively.

  • Choose the way to remove breakpoints, the default setting is Click.

  • On the Debugger. Data Views page under the Debugger node, configure advanced debugger options: enable or disable Inline Debugging, specify when you want to see tooltips with object values and expressions evaluation results, etc.

Starting a debugging session with your default Chrome user data

You may notice that your debugging session starts in a new window with a custom Chrome user data instead of your default one. As a result, the window looks unusual, for example, your bookmarks, the browser history, and the extensions are missing, which altogether breaks your development experience. That happens because GoLand uses Chrome Debugging Protocol and runs Chrome with the --remote-debugging-port option. However, if Chrome is already started, a debugging port can't be opened for any new or existing Chrome instance that has the same user data. Therefore, when Chrome Debugging Protocol is used, GoLand always starts a debugging session with in a new window with a custom user data.

Summary

  • To start a debugging session in the same Chrome instance, use the JetBrains Chrome extension as you did before.

  • To open a new Chrome instance with your familiar look-and-feel, configure Chrome in GoLand to start with your user data. In this case, before starting a debugging session, always make sure that Chrome is not already running with your user data. Otherwise GoLand still launches another instance of Chrome with your user data but is unable to open a debugging port for it. As a result, GoLand debugger fails to connect to the application in the new Chrome instance and the debugging session does not start.

To configure Chrome in GoLand to start with your Chrome user data

  1. Save your Chrome user data anywhere on your machine.

  2. In the Settings/Preferences dialog (Ctrl+Alt+S), click Web Browsers under Tools. The Web Browsers page opens.

  3. To create a new Chrome configuration, click Add. A new item appears in the list. In the Path field, specify the path to the Chrome installation folder.

  4. Select the new configuration and click Edit. The Chrome Settings dialog opens.

  5. Select the Use custom user data directory checkbox and specify the path to your user data directory in the GoLand settings.

  6. Mark your Chrome browser configuration default as described in Choosing the default GoLand browser, and don't forget to choose Default from the Browser list when creating a run/debug configuration.

To debug with the JetBrains Chrome extension

Last modified: 29 October 2019