Hi!
Since node.js 8.1.0 --inspect-brk=0 is used for random debugger port.
nodejs/node#5025
For now, VS Code 1.24 does now support such a situation. It fails to attach to process.
So, support this please.
Just in case, WebStorm supports this, so let's catch up. :)
WebStorm support answered me how they do it:
for child processes we do parse parent process output with regexp to get the port number. But note that this only works if the child process inherits stdio from parent.
Hi!
Since node.js 8.1.0
--inspect-brk=0is used for random debugger port.nodejs/node#5025
For now, VS Code 1.24 does now support such a situation. It fails to attach to process.
So, support this please.
Just in case, WebStorm supports this, so let's catch up. :)
WebStorm support answered me how they do it: