- Building Enterprise JavaScript Applications
- Daniel Li
- 62字
- 2021-07-23 16:31:20
Using a debugger for Node.js debugging
A debugger is a tool that allows us to pause the execution of the code at certain breakpoints and examine any variables that are accessible within that scope at the time. For us, we want to pause the execution inside our server's requestHandler method to enable us to examine the req object.