Getting Eclipse Helios Javascript Work

I just downloaded the Eclipse IDE for JavaScript web developers and cannot figure out how to use or debug a separate javascript program using it. Presumably I need to configure some kind of server? Any idea where the documentation could be?

+3
source share
3 answers

There are several javascript debugger plugins for Eclipse, but I don’t think that in general is what people use.

Typically (since javascript is running in the browser, and each browser behaves differently), you run and debug in the browser.

To debug javascript, I use:

  • Firefox: Firebug
  • IE8: Embedded Developer Tools (F12)
  • Safari: ( prefs, JS-)
  • Google Chrome: webkit JS Safari.

, . - javascript, , eclipse . , , , . - Dreamweaver - -.

Eclipse (- Java, Java .. ..).

Eclipse javascript , - Java. Eclipse IDE Java EE. WTP, Javascript. java- tomcat ( javascript, html, jsp .. ).

0

JSDT http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.wst.jsdt.doc/started/overview.html

http://kellicker.wordpress.com/2010/08/17/jsdt-resources/

If your stand-alone script is designed to be handled by web browsers, it is best to use Google JsTestDriver . This will make your code run in different browsers and at the same time run test execution and get a report of the results from Eclipse.

Disclaimer: I'm new to JSDT and JsTestDriver, and my attempts to use the JsTestDriver Eclipse plugin have been failing all this morning ...

0
source

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


All Articles