From f6d3938c6a68b4168170a06246fe19a83f5fbaa5 Mon Sep 17 00:00:00 2001 From: Kalpit Shah Date: Thu, 13 Oct 2022 14:02:37 +0530 Subject: [PATCH] Updated 101-using-debugger.md (#2465) --- .../103-nodejs-error-handling/101-using-debugger.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/101-using-debugger.md b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/101-using-debugger.md index 157f5eb9d..f64bb61e7 100644 --- a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/101-using-debugger.md +++ b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/101-using-debugger.md @@ -1 +1,11 @@ -# Using debugger \ No newline at end of file +# 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 + +Free Content +Official Website +Node.js Debugging +Node.js Debugging in VS Code +