Debugging a Node js Express API in VS Code Debugger

Why

When we create software, we rarely do it without errors. API creation isn’t exempt from this fact, so sooner or later, we’ll need to debug it. In JavaScript, the first stop for a debugging task is often logging to the console, but using a debugger can give us a more integrated experience.

Node js is a cross-platform and open source JavaScript runtime environment that allows the JavaScript to be run on the server side.

CategoriesUncategorized