I am using WebStorm (8.0.4) on Mac (latest version of Mavericks). I am trying to debug this simple loop for a script:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script type="text/javascript"> for(var i=0;i<10; i++) { console.log('hola!'); } </script> </body> </html>
I am using Chrome with the JB extension with this configuration:
Host: 127.0.0.1 Port: 63342
In the project settings, in Javascript, Debugger, I have this configuration:
Integrated Server Port: 63342
The STOP code is at the breakpoint (in the for loop), but after one second I have a message that says:
Disconnected (browser disconnected)
and I lost the debug mode ...
I am very lost and I do not know what will happen ... any help please?
Hi
source share