filmov
tv
How to debug and inspect NodeJS Application

Показать описание
This tutorial will explain how to debug NodeJS Application using Visual Studio Code
Complete Description of the Tutorial
Step 1 : Open the Visual Studio code with nodejs file to be debugged
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [{
"type": "node",
"request": "launch",
"name": "Launch Program",
}]
}
Step 3: Then you can click on the debug icon present in the Visual Studio and select the breakpoint where you want to start the debugging
Complete Description of the Tutorial
Step 1 : Open the Visual Studio code with nodejs file to be debugged
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [{
"type": "node",
"request": "launch",
"name": "Launch Program",
}]
}
Step 3: Then you can click on the debug icon present in the Visual Studio and select the breakpoint where you want to start the debugging