Is there an eclipse plugin for React JS

I am planning to use React JS with Rest API but after spending a lot of time on google cant find a better way to get started. There are no eclipse plugins available for react js. Please suggest how can I get started on React with eclipse or other open source editors.

+3


source to share


4 answers


I had the same problem and decided to use the atom editor: https://atom.io/ Atom is based on Google Chrome, but you won't feel like using google chrome, but a fully functional editor with many plugins available.

I know there is a nodeeclipse project http://www.nodeclipse.org/ but I was unable to install and run it out of the box and it seems that the jsx syntax for ES6 is not supported.

Now I really like the atom editor, it is very easy to work with. Of course, some of the shortcuts are different compared to eclipse, but anyway, I was able to generate the code really quickly. the atom seems rather light and does not harbor as much memory as an eclipse. So there is no problem to develop reactjs app in atom and eclipse as the second editor is working on building your rest app.



respectfully

Davey

+6


source


Genuitec has an Eclipse plugin called CodeMix that provides wizards, navigation, content maintenance, validation, and debugging for ReactJS in Eclipse. You can detail all the features that CodeMix provides for React development on the Genuitec website .



+1


source


I am using vim. Large support for syntax highlighting in JSX, ES6. auto formatting, unit test works, etc. There are many vim configurations that you can find on github so you can get started quickly. My example: https://github.com/ywen/vim-config-files

0


source


Angelo Zerr TypeScript IDE includes a JSX editor and provides some support. Find it in the Eclipse Marketplace client or go to https://marketplace.eclipse.org/content/typescript-ide

0


source







All Articles