Back to Developer Roadmap

Using Debugger

src/data/roadmaps/nodejs/content/[email protected]

4.0616 B
Original Source

Using Debugger

Node.js includes a command-line debugging utility. The Node.js debugger client is not a full-featured debugger, but simple stepping and inspection are possible. To use it, start Node.js with the inspect argument followed by the path to the script to debug.

Example - $ node inspect myscript.js

Visit the following resources to learn more: