eclipse: add Chrome extension library - eclipse

In Eclipse, static html project:
Developing Chrome extension, it would be nice to have IntelliSense om methods.
Is it possible to add a library to eclipse, so you would have IntelliSense when creating chrome extensions?
Thanks
Rregards
Christian

The only way I could think of doing this would to be install the Eclipse Aptana plug-in, then you would have to find a Rubble that supported the chrome* API. I don't think you will find anything though. The API is actually very small.
I would just use the online docs...

Related

Is there any eclipse plugin available for React JS

I am planning to use React JS with Rest API But after spending long time on google cant find the best way to start. There are no eclipse plugins available for react js. Please suggest how i can start working on React with eclipse or other open source editors.
i had the same issue and ended up to use the atom editor: https://atom.io/
Atom is based on google chrome, but you will not feel using google chrome, but a full featured editor with many cool plugins available.
I know, there is a nodeeclipse project http://www.nodeclipse.org/ but i was not able to install and run it out-of-the-box and it seems that jsx syntax for ES6 was not supported.
Now i really like atom editor, it is very easy to handle. Of course some shortcuts are different compared to eclipse, but anyway, i was really quickly able to produce code.
atom seems to be pretty lightweight and does not eat so much memory like eclipse. So there is no problem developing your reactjs app in atom and have eclipse as second editor running developing your rest app.
Kind regards
davey
Genuitec has an Eclipse plugin called CodeMix that provides wizards, navigation, content assist, validation, and debugging for ReactJS in Eclipse. You can details for all the features that CodeMix provides for for React development on the Genuitec website.
Angelo Zerr's TypeScript IDE includes a JSX editor and provides some support. Search for it in the Eclipse Marketplace Client or go to https://marketplace.eclipse.org/content/typescript-ide
I use vim. Plenty support on syntax highlighting on JSX, ES6. auto formatting, unit test running, etc. There are plenty of vim configurations you can find on github so you can get a quick start. An example of mine: https://github.com/ywen/vim-config-files
There is not a proper plugin for eclipse, you can use codemix but the code completion are not proper and it is quite slower but for as if now that is the best for eclipse. Use VS code that is the best .
You can not directly install codemix plugin from marketplace, by drag n drop or by marketplace. To install codemix please follow the below steps:
In ECLIPSE or STS

Add api from Meteor to develop in Eclipse or Aptana

I have searched on meteor docs (http://docs.meteor.com/) to find a way to add api in Eclipse or Aptana and develop my applications inside this IDE.
I Know how to add external libraries in my project but i don't know what are the library to add for use Meteor inside Eclipse / Aptana and use (for example) autocomplete feature so i can type:
Meteor. <-- And I want that eclipse show all functions
there is any sort of list of library to add? can you help me?
thank you!
Here is !! ;) https://github.com/angelozerr/tern.java/wiki/Tern-&-Meteor-support
I used it at Eclipse and with sublime text, and it is very usefull

which eclipse package is for web development?

I'm looking at http://www.eclipse.org/downloads/ and http://www.eclipse.org/downloads/compare.php and I have no idea which package to download. I'm coding in php, html, css, javascript. Which one is the right one for me? I don't see any of these languages in the descriptions.
Thanks.
If you want standard Eclipsed (eg. not Aptana or something derived form eclipse) Then PDT (PHP Development Tools) is what you want.
You should probably download the Eclipse for JavaScript developers distribution, and then download the PHPEclipse plugin by following the following instructions: http://www.phpeclipse.com/wiki/General/PHPEclipseFAQ#InstallPHPEclipseinEclipsesince3.4M6

Netbeans Visual Library into Eclipse Editors

Does anyone know if it is possible to use/embed the Netbeans Visual Library into the a Eclipse Editor in order to develop plugins for Eclipse.
I was taking a look to the GEF Project from Eclipse and I think that Netbeans Visual Library is easier to use than GEF.
Thanks!
You don't want to do that. Anything UI related from Netbeans is going to be Swing-based. Eclipse is SWT-based. Mixing the too UI stacks is possible with SWT-AWT bridge, but there are numerous issues with the bridge. You are far better off learning GEF.

Zend Studio: how to add Less CSS support to Zend Studio?

I would like to add Less CSS support including syntax highlighting and ability to create/edit .less files. How can I do this?
Zend Studio is built on Eclipse, so instruction on how to do this in Eclipse may also be helpful.
As far as I can remember, there is no plugin for LessCSS for the Eclipse platform. If you're using PHPStorm on the other hand, it comes bundled with a very neat LessCSS plugin. NetBeans also has a plugin you can download and install, but it needs a little bit of work.
ZendStudio is based on eclipse. I asked the same question some time ago and got a real answer few days ago.
https://stackoverflow.com/questions/3577637/less-css-support-for-eclipse-pdt/7966689#7966689