All Questions
16 questions
1
vote
0
answers
136
views
Node.js Debugger causes ECONNRESET
I have a Typescript application that I debug on my local machine.
I encountered some weird behavior when debugging this transpiled piece of code:
getRedHatUpdatesByIds(rhsaIds, tmConfig) {
return ...
1
vote
0
answers
332
views
Unbound breakpoint in Visual Studio Code
I have some open source code that I am trying to debug. The client side is written in TypeScript. While the server part can be debugged just fine, the client cannot. The client gets invoked, and the ...
4
votes
0
answers
601
views
VScode not debugging Angular project, Unbound breakpoints
I have tried everything I could find here and on other websites. From playing with the sourcemap settings, webroot, launch config in general, nodejs versions and others. I can't seem to get the ...
0
votes
2
answers
379
views
What if I forgot to remove 'debugger;' in a .js file & deploy it on live. Will it affect my application?
I'm working on a nodeJs application & by mistake I forgot to remove the debugger; code in it. Will I face any issues if I deploy the same code on live ?
0
votes
1
answer
632
views
Do not know how to start debugging a Node.js code in JetBrains WebStorm
I am trying to learn to debug a Node.js code in WebStorm. The code is the simple "Getting Started" code from here:
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
...
0
votes
1
answer
2k
views
Debugging an Electron app : Breakpoints not working ("Breakpoint ignored because generated code not found")
I've got a basic HelloWorld app based on the electron-hello-world project running on VSCode and able to launch a debug session and the app starts up fine.
I've got a breakpoint set on main.js but it ...
0
votes
1
answer
444
views
Using gulp instead of nodejs in IntelliJ ignores breakpoints
I have inherited a project running gulp+nodejs. I am trying to use IntelliJ in Windows as my IDE.
If I set my runtime configuration to use "node.js" as its type, I have no problem hitting breakpoints ...
2
votes
1
answer
268
views
Not able to hit any Breakpoints in WebStorm, even in very simple setting
Even in an extremely simple setting, I'm unable to get any breakpoints in my code to hit. See the attached screenshot. After hitting 'Debug "main.js"', the execution is never interrupted.
8
votes
3
answers
1k
views
ignore debugger; statements in Node.js, during debug session
I have a codebase where I have quite a number of
debugger;
statements. Sometimes I debug, and I actually just want to skip all of the debugger; statements and continue only to the manually set ...
0
votes
2
answers
8k
views
How to add a breakpoint with Atom's node-debugger?
I'm trying to use the Atom's package 'node-debugger' (here), but I can't find a way to add a breakpoint to a file. I tried using F9 being at the line but it does nothing. Any idea?
I'm on Mac El ...
8
votes
4
answers
2k
views
WebStorm Debugger for Node Stopping at Non Breakpoints
In WebStorm, I have a Node application and I simply hit debug and on load the debugger stops on a bunch of seemingly random lines in node_modules. I can continue through about 5 files until I get to a ...
28
votes
10
answers
29k
views
Webstorm debugger breakpoints doesn't work in nodejs
When I try to set a breakpoint and debug the file, the debugger just run the app without stopping at breakpoints.
This is my code:
console.log('123');
And this is my output:
/usr/bin/node --debug-...
3
votes
1
answer
522
views
Afer changing TypeScriptOutDir breakpoints are never hit
I am using Visual Studio Professional 2013 Update 3 and I have created a Node console Application with the "hello world" log instruction. If I set a breakpoint in this instruction and then I run the ...
2
votes
2
answers
2k
views
Eclipse node.js project is not stopping on breakpoints
I am playing with Node.js and eclipse using nodeclipse (here) using a newly installed eclipse instance. I've had passing experience with eclipse, but this is a new install for this purpose. I've been ...
48
votes
7
answers
15k
views
How to disable in the node debugger "break on first line"
Is there a command line argument or an environment variable that disables the "break on first line" feature of the node debugger?