views:

2100

answers:

7

I'm looking for a good plugin for doing web front end work in Eclipse. I don't want something that completely takes over eclipse, or something that has masses of dependencies that need to be updated all the time, or something that is geared towards a particular server-side platform, or something that costs a heap.

Is there something light-weight out there that hits the sweet spot?

Cheers Mark

+3  A: 

Sounds like you need the Web Tools Project

slashnick
+3  A: 

You may like:

  • JSEclipse plugin (update site) originally developed by Interactonline, later acquired by Adobe
  • Eclipse Web Tools Platform Project (update site)
Sergey Ilinsky
+4  A: 

Personally, I use the standalone community version of Aptana for that sort of thing, as I don't really use Eclipse for anything much else these days.

There is an Eclipse plugin version of Aptana, info available here: http://www.aptana.com/docs/index.php/Plugging_Aptana_into_an_existing_Eclipse_configuration

seanb
The info page has moved here: http://docs.aptana.com/docs/index.php/Plugging_Aptana_into_an_existing_Eclipse_configuration
Sven Larson
A: 

Isn't it an oxymoron to work with Eclipse and at the same time want something to be light weight?

TravisO
+1  A: 

I use in my company the Amateras HTML Editor. It is the base for other more advanced editors for editing JSF, Struts, UML, XML, ...). It is straightforward, just a plugin, and does the necessary jobs pretty well. Comes with a source editor (with completion) and a preview that works quite well.

mliebelt
A: 

It depends - for JS and CSS I use standard Webtools plugin. But for HTML and XML I think Aptana made great fork - autoformatting in HTML really helps a lot. I use Eclipse, but download Aptana as plugin and use only some of it's feautures.

Also Aptana JS editor gives your possibility to use code complete and doc for most popular JS frameworks such as jQuery or Ext.

pbrodka
+2  A: 

I tried aptana - found it took over my whole eclipse environment and put news feeds and other rubbish all over the place...

I then tried installing a subset of the aptana jar's and ended up pretty happy with the result.

Here's what I have in my plugins directory:

com.aptana.ide.core_1.2.0.018852.jar com.aptana.ide.snippets_1.2.0.018852.jar com.aptana.ide.core.ui_1.2.0.018852.jar com.aptana.ide.debug.core_1.2.0.018852.jar com.aptana.ide.editor.css_1.2.0.018852.jar com.aptana.ide.editor.html_1.2.0.018852.jar com.aptana.ide.editor.js_1.2.0.018852.jar com.aptana.ide.editors_1.2.0.018852.jar com.aptana.ide.editors.codeassist_1.2.0.018852.jar com.aptana.ide.epl_1.2.0.018852.jar com.aptana.ide.io.file_1.2.0.018852.jar com.aptana.ide.jface.text.source_1.2.0.018852.jar com.aptana.ide.lexer_1.1.0.018852.jar com.aptana.ide.libraries_1.2.0.18696 com.aptana.ide.libraries.jetty_1.2.0.018852 com.aptana.ide.logging_1.2.0.018852.jar com.aptana.ide.parsing_1.2.0.018852.jar com.aptana.ide.search.epl_1.2.0.018852.jar com.aptana.ide.server_1.2.0.018852.jar com.aptana.ide.server.core_1.2.0.018852.jar com.aptana.ide.server.jetty_1.2.0.018852.jar com.aptana.ide.server.ui_1.2.0.018852.jar

..and in the features:

com.aptana.ide.feature.editor.css_1.2.0.018852 com.aptana.ide.feature.editors_1.2.0.018852 com.aptana.ide.feature.editor.html_1.2.0.018852 com.aptana.ide.feature.editor.js_1.2.0.018852

Mark