JavaScript debugging with Eclipse

What is the best way to debug javascript from an eclipse environment. I used the "logging to console" firebug functions with firephp installed on top of it to debug the kohana php project along with eclipse, but they make the browser unstable when I use jQuery extensively. For example, "Permission denied to ... non-chrome context ..." is one such error that is common in firebug.

+4
source share
2 answers

You can try ATF (Ajax Tools Framework)

ATF provides a toolkit that allows the user to edit, debug, and track CSS, HTML, and JavaScript applications and a framework on which adopters can create advanced and specialized tools.
ATF functionality is divided into three main areas:

  • Browser tool Jsconsole
  • Javascript debugger DebuggerBreakpoints
  • extensions for adoptive parents

See this demo , ATF Help Page , and this thread .

Collage

+1
source

For Node.js there is Nodeclipse 0.2 with some bug fixes for chromedevtools

0
source

Source: https://habr.com/ru/post/1305631/


All Articles