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
+