30
VS Code debugging for web developer

Visual Studio Code is a light weight IDE for developing and debugging web applications or projects that run on javascript.Although by installing extensions you can extend the functionality to support different languages within the IDE. Vs Code is built on electronJs which is a JavaScript framework for building native desktop applications,Which means it comes with full support of running JavaScript applications for web developers.
Electron JS has main process and render process.Main process runs nodeJs in back-end whereas renderer process runs any web application using any web framework in JavaScript.








.vscode/launch.json
file and maintaining the suggestion

Thanks, hope this helps you get basic idea for debugging web applications in VS Code . Read more here
30