Reputation: 2973
To be able to debug javascript on Eclipse directly in HTML5 code/libraries, I downloaded the ChromeWebdeveloper tools and installed it on Eclipse. Also ran \chrome.exe --remote-shell-port= to run the debug on port 9222 on chrome. However when I try to launch the application it shows me - "Failed to connect to the remote browser" - connect time out error.
Any clue whats going wrong in here?
Thanks
Upvotes: 0
Views: 2648
Reputation: 146302
You already have Chrome.
Chrome comes with a very nice debugger already built in!
Just press CTRL + SHIFT + J
to start it up, then click on Sources
:
Upvotes: 4