MY BACKGROUND / MOTIVE: I am a long time Eclipse/Java developer learning React and evaluating which IDE/Editors to use. I would love to stick with Eclipse (since we have lots of back-end Java), and I am dumbfounded (or missing something) that the JavaScript support built-into Eclipse seems to be stunted? So CodeMix seems like it might bridge that gap.
PROGRESS SO FAR: I was (finally) able to get a debugging session to work for a React project within Eclipse+CodeMix. To test/debug React it seems necessary to first open a terminal associated with the project and run “npm start”. Then I was able to come up with the following launch.json configuration that seemed to get the debugger working inside of Eclipse:
“configurations”: [
{
“type”: “chrome”,
“request”: “launch”,
“name”: “Launch Chrome”,
“url”: “http://localhost:3000”
}
]
Is this this best / correct approach?
I feel like I am fumbling around to figure all of this out. Are there any step-by-step instructions for creating a React project within Eclipse and then starting a debugging session?