Skip to content
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

Node.js v23.2.0: Breakpoints not binding in VS Code debugger #55948

Open
carlmattsimpao opened this issue Nov 21, 2024 · 1 comment
Open

Node.js v23.2.0: Breakpoints not binding in VS Code debugger #55948

carlmattsimpao opened this issue Nov 21, 2024 · 1 comment

Comments

@carlmattsimpao
Copy link

Version

v23.2.0

Platform

Microsoft Windows NT 10.0.19045.0 x64

Subsystem

Node.js Debugger (V8 Inspector)

What steps will reproduce the bug?

Install Node.js v23.2.0

Create a simple JavaScript file:

test() {
    console.log("test");
    console.log("test2");
}
test();
  • Set breakpoints in VS Code
  • Start debugging session using VS Code's built-in JavaScript debugger
  • Observe that breakpoints are not hit

How often does it reproduce? Is there a required condition?

Reproduces 100% of the time with Node.js v23.2.0. Issue does not occur with v23.1.0.

What is the expected behavior? Why is that the expected behavior?

Debugger should pause execution at set breakpoints, allowing inspection of program state.

What do you see instead?

Program runs without stopping at breakpoints. Breakpoints appear hollow/unfilled in VS Code, indicating they are not binding to the code.

Additional information

  • Downgrading to Node.js v23.1.0 resolves the issue
  • Using standard VS Code debugging configuration:
{
    "type": "node",
    "request": "launch",
    "name": "Debug Program",
    "skipFiles": ["<node_internals>/**"],
    "program": "${workspaceFolder}/test.js"
}

VSCode:

Version: 1.95.3 (user setup)
Commit: f1a4fb101478ce6ec82fe9627c43efbf9e98c813
Date: 2024-11-13T14:50:04.152Z
Electron: 32.2.1
ElectronBuildId: 10427718
Chromium: 128.0.6613.186
Node.js: 20.18.0
V8: 12.8.374.38-electron.0
OS: Windows_NT x64 10.0.19045

@ksn5
Copy link

ksn5 commented Nov 22, 2024

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants