-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace node debug adapters with vscode-js-debug adapter #555
Comments
@vrubezhny maybe something to investigate as you're doing the version bump. If you're lucky, it may actually fix a few conflicts and resolve some issues; otherwise, it can make things worse;) |
I do not see this package on npm.js, so we'd need to "fetch" it from VSCode like we do for some other packages. I see https://github.com/microsoft/vscode-js-debug/blob/master/src/debugServerMain.ts as entry point in the source but don't see where it is in "binary". |
wouldn't https://github.com/microsoft/vscode-js-debug/archive/v1.54.1.tar.gz be better than fetching from vscode? |
This is a source tarball (.ts file), not a binary (.js) distribution, it would require to run the build steps. |
I opened microsoft/vscode-js-debug#926 to ask how this debug adapter can be consumed out of VSCode. |
I'm experimenting. |
Follow up at microsoft/vscode-js-debug#969 |
This is now a requirement in order to adopt newer versions of VSCode Language Servers, as the legacy node-debug as vanished. |
Note that recently @vrubezhny managed to reduce the important of this issue by fetching the node-debug2 adapter from https://marketplace.visualstudio.com/items?itemName=ms-vscode.node-debug2 instead of taking it from older VSCode. This has allowed to move to newer VSCode version and at the same time to keep integrating node-debug2. |
There was some progress on DAP spec that would now allow that. |
And some more: microsoft/vscode-js-debug#926 (comment) |
But attaching to node process is still not functioning Fixes eclipse-wildwebdeveloper#555
But attaching to node process is still not functioning Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes eclipse-wildwebdeveloper#555
This also restore ability to debug running Node processes (eg start with --inspect). Requires usage of latest LSP4E support for DAP. Fixes #555
the former vscode-node-debug adapter is now replaced by vscode-js-debug. Wild Web Developer should try to adopt this newer debugger for node/js debugging.
The text was updated successfully, but these errors were encountered: