How to filter files from Node.js Debugger

149 Views Asked by At

When using the Node.js Debugger with Chrome DevTools it's desirable to only debug the code you have written, and skip over code in node_modules. This can be done by blackboxing node_modules. However Node.js's own javascript code is not clearly under a file path that can be blackboxed (as seen in the picture below). How does one filter all of Node.js's internal javascript code from being stepped through in the Chrome DevTools debugger?

Node.js internal javascript code

0

There are 0 best solutions below