New JavaScript Debugger stuck since VS Code version 1.47
See original GitHub issueConfiguration in launch.json:
{ "name": "Attach to API Module", "type": "node", "request": "attach", "port": 9230, "restart": true, "sourceMaps": true, "protocol": "inspector", "timeout": 60000, "skipFiles": ["<node_internals>/**/*.js"], "trace": true, }
Starting node:
After attaching Debugger it shows:
Then the console is stuck completely. No breakpoint stops. Disconnect doesn’t work. The node server itself just works fine. With earlier Versions ( <= 1.46 ) debugging was possible.
Log File vscode-debugadapter-1.json.gz
VS Code Version: 1.47
Additional context
Environment:
Running VS Code in WSL on Windows
Linux 4.4.0-18362-Microsoft #836-Microsoft Mon May 05 16:04:00 PST 2020 x86_64 x86_64 x86_64 GNU/Linux
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:16 (9 by maintainers)
Top GitHub Comments
Okay, gotcha. I’ll add that to our COMMON_PROBLEMS.md – this had come up before but I couldn’t find the issue. Glad you got it working.
Thanks, I see you’re running nvm, so are you able to easily try on the latest 10.x, e.g.
10.22.1
? If I recall there were a couple point releases in 10.x where things were broken, though I don’t reproduce any issues on Ubuntu running 10.16.0 myself.