Initially raised as Nodeclipse/www.nodeclipse.org#77
It seems that Nodejs 8 change option names
(node:4376) [DEP0062] DeprecationWarning: node --debug and node --debug-brk are invalid. Please use node --inspect or node --inspect-brk instead.
The line in question is https://github.com/Nodeclipse/nodeclipse-1/blob/master/org.nodeclipse.debug/src/org/nodeclipse/debug/launch/LaunchConfigurationDelegate.java#L114
cmdLine.add("--debug"+brk+"="+nodeDebugPort);
i.e. using --debug is hard-coded now
TODO test with Node.js 8, if using --inspect would work.
HELP WANTED!!