PyCharm 2021.2 Help

Debugging JavaScript Deployed to a Remote Server

Before you start

  1. Make sure the JavaScript and TypeScript and JavaScript Debugger required plugins are enabled on the Settings/Preferences | Plugins page, tab Installed, see Managing plugins for details.

  2. Configure the built-in debugger as described in Configuring JavaScript debugger.

    To have the changes you make to your HTML, CSS, or JavaScript code immediately shown in the browser without reloading the page, activate the Live Edit functionality. See Live Edit in HTML, CSS, and JavaScript for details.

What is a remote web server?

In PyCharm, any server with the document root outside the current project is called remote. This server may be actually running on a physically remote host or on your machine.

For example, if your project is in C:/PyCharmProjects/MyProject and the web server document root is C:/XAMPP/htdocs, for PyCharm this web server is remote.

How do I synchronize my application sources on the server with their local copies in my PyCharm project?

To debug an application on a remote web server, you need to have the copies of its sources in a PyCharm project. To synchronize local and remote sources, create a deployment configuration as described in Create a remote server configuration and Configure synchronization with a Web server.

Debugging an application on a remote server

  1. Set the breakpoints in the JavaScript code, as required.

  2. Create a debug configuration of the type JavaScript Debug:

    From the main menu, choose Run | Edit Configuration, then in the Edit Configurations dialog, click the Add button on the toolbar and select JavaScript Debug from the list.

  3. In the Run/Debug Configuration: JavaScript Debug dialog that opens, specify the URL address at which the application is running. This URL address should be a concatenation of the Web server root URL and the path to the HTML file relative to the web server document root in accordance with server access configuration, see Configure synchronization with a Web server.

    Click OK to save the configuration settings.

  4. Choose the newly created configuration in the Select run/debug configuration list on the toolbar and click Debug Start the debugger. The HTML file specified in the run configuration opens in the chosen browser and the Debug tool window appears.

  5. In the Debug tool window, proceed as usual: step through the program, stop and resume the program execution, examine it when suspended, view actual HTML DOM, run JavaScript code snippets in the Console, and so on. .

Example

Suppose you have a simple application that consists of an index.html file and an App.js file, where index.html references App.js.

  1. Let's now deploy our simple application to a local web server, see Deploy. In this example it is Apache:

    Debug JavaScript on an external web server: uploaded sources on the remote host
  2. When using a local web server, such as Nginx or Apache, as in our example, or the web server is on a remote host, you need to create a Run/Debug configuration to start the JavaScript debugger. To do that, click the list at the upper right-hand corner of the PyCharm window and choose Edit Configurations. Alternatively, choose Run | Edit Configurations from the main menu:

    Debug JavaScript on an external web server: open Edit configurations dialog

    In the Run/Debug Configurations dialog that opens, click icons.general.add.png and choose JavaScript Debug from the list:

    Create JavaScript Debug configuration

    Specify the URL you are running your application at:

    URL to run your application

    In our example, the local project structure and file structure on the server are the same so no mappings are required.

  3. Now we can start debugging: choose the new run/debug configuration from the list in the upper right-hand corner of the PyCharm window, and then click Start the Debugger to the right of the list:

    Editor, main menu and the toolbar

Configuring mappings

Mappings set correspondence between files on a web server and their local copies. You need mappings:

  • When your application is deployed and running on a remote web server.

  • When you have defined several resource root folders in addition to the project root.

In most cases, PyCharm sets path mappings automatically by reusing mappings from the deployment configuration. If your application structure is complicated, additional manual configuration is required.

Configure mappings

  1. Create a debug configuration of the type JavaScript Debug as described in Debugging an application.

  2. In the Remote URLs of local files area, map the files and folders to URL addresses of files and folders on the server according to the currently used deployment configuration, see Mapping local folders to folders on the server and the URL addresses to access them.

Last modified: 19 October 2021