Complete the code to start the Node.js debugger with a script named app.js.
node [1] app.jsUse debug to start the built-in Node.js debugger in legacy mode.
Complete the code to start Node.js with the modern debugger listening on port 9229.
node [1]=9229 app.js
The --inspect flag starts the modern debugger and listens on the specified port.
Fix the error in the code to start the debugger and pause execution on the first line.
node --inspect-brk=[1] app.jsThe --inspect-brk flag expects a port number to listen on, such as 9229.
Fill both blanks to start the Node.js debugger and open the inspector on port 9230.
node [1]=[2] app.js
Use --inspect=9230 to start the modern debugger listening on port 9230.
Fill all three blanks to start Node.js with the debugger, pause on the first line, and enable the inspector on port 9240.
node [1] [2]=[3] app.js
--inspect-brk pauses on the first line, --inspect=9240 enables the inspector on port 9240.