Open
Description
Initially raised as Nodeclipse/www.nodeclipse.org#77
It seems that Nodejs 8 change option names
(node:4376) [DEP0062] DeprecationWarning:
node --debug
andnode --debug-brk
are invalid. Please usenode --inspect
ornode --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!!