1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Added content for debugging in node.js and how to debug. (#2340)

* Added content for debugging in node.js and how to debug.

added tutorial links for the same to learn more about debugging in node.js

* Update content/roadmaps/107-nodejs/content/116-nodejs-more-debugging/readme.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Aarti Verma
2022-10-12 03:27:08 +05:30
committed by GitHub
parent 233c5d8105
commit ae959049e4

View File

@@ -1 +1,9 @@
# Nodejs more debugging
# More Debugging
Debugging is a concept to identify and remove errors from software applications. Here, we will learn about the technique to debug a Node.js application.
## Why not to use console.log() for debugging?
Using `console.log` to debug the code generally dives into an infinite loop of “stopping the app and adding a console.log, and start the app again” operations. Besides slowing down the development of the app, it also makes the writing dirty and creates unnecessary code. Finally, trying to log out variables alongside with the noise of other potential logging operations, may make the process of debugging difficult when attempting to find the values you are debugging.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Website' colorScheme="yellow" href='https://www.geeksforgeeks.org/node-js-debugging/'>Node.js Debugging</BadgeLink>