With PhpStorm, you can debug your client-side JavaScript in Firefox, version 36 and higher, using the Firefox remote debugging functionality. However it is strongly recommended that you use Chrome or any other browser of the Chrome family for the following reasons:
PhpStorm does not support source maps during a debugging session in FireFox, which blocks debugging of compressed or machine-generated JavaScript.
When debugging in Firefox, you cannot preview the changes to your HTML, CSS, or JavaScript code on the fly - this functionality, known as Live Edit, is supported only in Google Chrome.
You can debug an application running on the PhpStorm built-in web server or on an external server.
To enable remote debugging in Firefox
Open your Firefox browser, click on the toolbar, and go to Web Developer | Toggle Tools. The Development Tools pane opens.
On the toolbar of the pane, click , select Settings from the list, and then select the Enable browser chrome and add-on debugging and Enable remote debugging checkboxes under Advanced Settings.
To restart Firefox with the debugger server
Open the Terminal tool window (Alt+F12) and type start firefox --start-debugger-server <port number> at the command prompt. Later you will specify this port number in the run configuration. You can set any port number, however it is recommended that you use 6000 and higher.
For versions 61 and earlier you do not need to restart Firefox.
Just go to Tools | Developer | Developer Toolbar and type listen <port number> in the console that opens at the bottom of the browser.
To debug an application
Set the breakpoints in the JavaScript code, as required.
Create a debug configuration of the type Firefox Remote: from the main menu, select Run | Edit Configuration, click on the toolbar and select Firefox Remote from the pop-up list.
Suppose you have a simple application that consists of two files: index.html and index.js file, where index.html references index.js. This example shows how you can debug the application when it is running on the PhpStorm built-in server.
In the Terminal tool window (Alt+F12, type start firefox --start-debugger-server 6000 at the command prompt.
Set the breakpoints in index.js.
Create a FireFox Remote debug configuration, type localhost and 6000 in the Host and Port fields respectively:
Open index.html in the editor, select Open in browser from the context menu, and then select Firefox from the list: The browser opens showing the application running on the PhpStorm port (currently 63345):
From the list on the toolbar, select the index_firefox_remote configuration and click : Click OK in the Incoming Connection dialog that opens: Refresh the application page in the browser.