+1 vote
in Node.js Essentials by (19.8k points)

How will you debug an application in Node.js?

1 Answer

0 votes
by (30.8k points)

Node.js includes a debugging utility called debugger. To enable it start the Node.js with the debug argument followed by the path to the script to debug.Inserting the statement debugger; into the source code of a script will enable a breakpoint at that position in the code:

by (30.8k points)

x=9;

setTimeout(()=>{

debugger;

console.log('madanswer');

}1000);

Related questions

+1 vote
0 votes
...