Breakpoint set with 'debugger' is ignored when using node --inspect
I'm encountering an issue with replicating the example provided in the "Adding a Breakpoint in Code" section of Chapter 4, "Debugging and Diagnostics".
Here is the relevant code from app.js:
function f(n = 99) {
if (n === 0) throw Error();
debugger;
f(n - 1);
}
f();
When I attempt to start app.js in Inspect mode using the --inspect flag (as opposed to --inspect-brk), I encounter the following output:
node --inspect app.js
Debugger listening on ws://127.0.0.1:9229/abdb9645-121f-4c70-a79d-3266273c9fb8
For help, see: https://nodejs.org/en/docs/inspector
/home/jumbo/dev/app.js:2
if (n === 0) throw Error();
^
Error
at f (/home/jumbo/dev/app.js:2:22)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
at f (/home/jumbo/dev/app.js:4:3)
Node.js v20.12.0
This output indicates that the breakpoint set using 'debugger' is not being recognized as expected when using node --inspect.
Seeking guidance on proper use of 'debugger' breakpoints.
Thanks in advance,
-Itai
Answers
-
No it's not.
Copied directly from the course page:
Adding a Breakpoint in Code
In some scenarios it can be easier to set a breakpoint directly in the code, instead of via the Devtools UI.
The debugger statement can be used to explicitly pause on the line that the statement appears when debugging.
Let's edit app.js to include a debugger statement on line 3:
function f (n = 99) {
if (n === 0) throw Error()
debugger
f(n - 1)
}
f()This time, start app.js in Inspect mode, that is with the --inspect flag instead of the -inspect-brk flag. Once Chrome Devtools is connected to the inspector, the "Sources" tab of Devtools will show that the application is paused on line 3:
1 -
Previously, in some topic earlier, you answered that this is some sort of a bug in node.js and you gonna specify this somewhere. But now you said opposite, that this is expected behavior. Lection contains that it should work in same way both. Maybe this lection/lab should be reformulated to do not contain confusion, controversial point with practical lab?
0 -
@akalikuli there was a bug in one of the node versions at one point, not sure how what you're saying is related
@itaid apologies you are right, I misread - it's because a debugger needs to be attached before debugger statements are honoured, this works:
require('inspector').waitForDebugger() function f(n = 99) { if (n === 0) throw Error(); debugger; f(n - 1); } f()this is some errata to update in the chapter also - thanks
4
Categories
- All Categories
- 175 LFX Mentorship
- 175 LFX Mentorship: Linux Kernel
- 745 Linux Foundation IT Professional Programs
- 372 Cloud Engineer IT Professional Program
- 168 Advanced Cloud Engineer IT Professional Program
- 73 DevOps IT Professional Program - Discontinued
- 3 DevOps & GitOps IT Professional Program
- 98 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- AI & ML Training
- Blockchain & Decentralized Identity Training
- Cloud & Containers Training
- Cybersecurity Training
- DevOps & Site-Reliability Training
- Linux Kernel Development Training
- Networking Training
- Open Source Best Practice Training
- System Administration Training
- System Engineering Training
- Web & Application Development Training
- 2 LFD103-JP クラス フォーラム
- 4 LFD210-CN Class Forum
- 764 LFD259 Class Forum
- 681 LFS101 Class Forum
- 2 LFS158-JP クラス フォーラム
- 162 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 4 LFS207-JP クラス フォーラム
- 61 LFS241 Class Forum
- 52 LFS242 Class Forum
- 42 LFS243 Class Forum
- 19 LFS244 Class Forum
- 4 LFS250-JP クラス フォーラム
- 166 LFS253 Class Forum
- 19 LFS256 Class Forum
- 1.4K LFS258 Class Forum
- 165 LFS261 Class Forum
- 26 LFS267 Class Forum
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 105 Mobile Computing
- 18 Android
- 72 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 944 Programming and Development
- 310 Kernel Development
- 616 Software Development
- 976 Software
- 368 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)
