+1 vote
in NodeJS Essentials by

How will you debug an application in Node.js?

1 Answer

0 votes
by

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

x=9;

setTimeout(()=>{

debugger;

console.log('madanswer');

}1000);

...