debugging - WebStorm debug javascript stopped and disconnected so fast -



debugging - WebStorm debug javascript stopped and disconnected so fast -

i'm using webstorm (8.0.4) in mac (mavericks lastly version). i'm trying debug simple loop 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 using chrome jb extension configuration:

host: 127.0.0.1 port: 63342

in settings of project, in javascript, debugger have configuration:

built-in server port: 63342

the code stop in breakpoint (in loop for), after 1 second, have message says:

disconnected (browser disconnected)

and lost debug mode...

i'm lost , don't know happens... help please?

regards

i had same problem. debugging stopped after 1 second

two things changed:

downloaded latest version of webstorm (8.05) before debug opened configuration , looked @ pages , save it.

after this, worked again.

javascript debugging webstorm

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -