{
  "type": "module",
  "source": "doc/api/debugger.md",
  "introduced_in": "v0.9.12",
  "stability": 2,
  "stabilityText": "Stable",
  "miscs": [
    {
      "textRaw": "Debugger",
      "name": "Debugger",
      "introduced_in": "v0.9.12",
      "type": "misc",
      "stability": 2,
      "stabilityText": "Stable",
      "desc": "<p>Node.js includes a command-line debugging utility. The Node.js debugger client\nis not a full-featured debugger, but simple stepping and inspection are\npossible.</p>\n<p>To use it, start Node.js with the <code>inspect</code> argument followed by the path to the\nscript to debug.</p>\n<pre><code class=\"language-console\">$ node inspect myscript.js\n&#x3C; Debugger listening on ws://127.0.0.1:9229/621111f9-ffcb-4e82-b718-48a145fa5db8\n&#x3C; For help, see: https://nodejs.org/learn/getting-started/debugging\n&#x3C;\nconnecting to 127.0.0.1:9229 ... ok\n&#x3C; Debugger attached.\n&#x3C;\n ok\nBreak on start in myscript.js:2\n  1 // myscript.js\n> 2 global.x = 5;\n  3 setTimeout(() => {\n  4   debugger;\ndebug>\n</code></pre>\n<p>The debugger automatically breaks on the first executable line. To instead\nrun until the first breakpoint (specified by a <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/debugger\"><code>debugger</code></a> statement), set\nthe <code>NODE_INSPECT_RESUME_ON_START</code> environment variable to <code>1</code>.</p>\n<pre><code class=\"language-console\">$ cat myscript.js\n// myscript.js\nglobal.x = 5;\nsetTimeout(() => {\n  debugger;\n  console.log('world');\n}, 1000);\nconsole.log('hello');\n$ NODE_INSPECT_RESUME_ON_START=1 node inspect myscript.js\n&#x3C; Debugger listening on ws://127.0.0.1:9229/f1ed133e-7876-495b-83ae-c32c6fc319c2\n&#x3C; For help, see: https://nodejs.org/learn/getting-started/debugging\n&#x3C;\nconnecting to 127.0.0.1:9229 ... ok\n&#x3C; Debugger attached.\n&#x3C;\n&#x3C; hello\n&#x3C;\nbreak in myscript.js:4\n  2 global.x = 5;\n  3 setTimeout(() => {\n> 4   debugger;\n  5   console.log('world');\n  6 }, 1000);\ndebug> next\nbreak in myscript.js:5\n  3 setTimeout(() => {\n  4   debugger;\n> 5   console.log('world');\n  6 }, 1000);\n  7 console.log('hello');\ndebug> repl\nPress Ctrl+C to leave debug repl\n> x\n5\n> 2 + 2\n4\ndebug> next\n&#x3C; world\n&#x3C;\nbreak in myscript.js:6\n  4   debugger;\n  5   console.log('world');\n> 6 }, 1000);\n  7 console.log('hello');\n  8\ndebug> .exit\n$\n</code></pre>\n<p>The <code>repl</code> command allows code to be evaluated remotely. The <code>next</code> command\nsteps to the next line. Type <code>help</code> to see what other commands are available.</p>\n<p>Pressing <code>enter</code> without typing a command will repeat the previous debugger\ncommand.</p>",
      "miscs": [
        {
          "textRaw": "Probe mode",
          "name": "probe_mode",
          "type": "misc",
          "meta": {
            "added": [
              "REPLACEME"
            ],
            "changes": []
          },
          "stability": 1,
          "stabilityText": "Experimental",
          "desc": "<p><code>node inspect</code> supports a non-interactive probe mode for inspecting runtime values\nin an application via the flag <code>--probe</code>. Probe mode launches the application,\nsets one or more source breakpoints, evaluates one expression whenever a\nmatching breakpoint is hit, and prints one final report when the session ends\n(either on normal completion or timeout). This allows developers to perform\nprintf-style debugging without having to modify the application code and\nclean up afterwards, and it supports structured output for tool use.</p>\n<pre><code class=\"language-console\">$ node inspect [--json] [--preview] [--timeout=&#x3C;ms>] [--port=&#x3C;port>] \\\n    --probe app.js:10 --expr 'x' \\\n    [--probe app.js:20 --expr 'y' ...] \\\n    [--] [&#x3C;node-option> ...] &#x3C;script.js> [args...]\n</code></pre>\n<ul>\n<li><code>--probe &#x3C;file>:&#x3C;line>[:&#x3C;col>]</code>: Source location to probe. Line and column number\nare 1-based.</li>\n<li><code>--timeout=&#x3C;ms></code>: A global wall-clock deadline for the entire probe session.\nThe default is <code>30000</code>. This can be used to probe a long-running application\nthat can be terminated externally.</li>\n<li><code>--json</code>: If used, prints a structured JSON report instead of the default text report.</li>\n<li><code>--preview</code>: If used, non-primitive values will include CDP property previews for\nobject-like JSON probe values.</li>\n<li><code>--port=&#x3C;port></code>: Selects the local inspector port used for the <code>--inspect-brk</code>\nlaunch path. Probe mode defaults to <code>0</code>, which requests a random port.</li>\n<li><code>--</code> is optional unless the child needs its own Node.js flags.</li>\n</ul>\n<p>Additional rules about the <code>--probe</code> and <code>--expr</code> arguments:</p>\n<ul>\n<li><code>--probe &#x3C;file>:&#x3C;line>[:&#x3C;col>]</code> and <code>--expr &#x3C;expr></code> are strict pairs. Each\n<code>--probe</code> must be followed immediately by exactly one <code>--expr</code>.</li>\n<li><code>--timeout</code>, <code>--json</code>, <code>--preview</code>, and <code>--port</code> are global probe options\nfor the whole probe session. They may appear before or between probe pairs,\nbut not between a <code>--probe</code> and its matching <code>--expr</code>.</li>\n</ul>\n<p>If a single probe needs to evaluate more than one value,\nevaluate a structured value in <code>--expr</code>, for example <code>--expr \"{ foo, bar }\"</code>\nor <code>--expr \"[foo, bar]\"</code>, and use <code>--preview</code> to include property previews for\nany object-like values in the output.</p>\n<p>Probe mode only prints the final probe report to stdout, and otherwise silences\nstdout/stderr from the child process. If the child exits with an error after the\nprobe session starts, the final report records a terminal <code>error</code> event with the\nexit code and captured child stderr. Invalid arguments and fatal launch or\nconnect failures may still print diagnostics to stderr without a final probe\nresult.</p>\n<p>Consider this script:</p>\n<pre><code class=\"language-js\">// cli.js\nlet maxRSS = 0;\nfor (let i = 0; i &#x3C; 2; i++) {\n  const { rss } = process.memoryUsage();\n  maxRSS = Math.max(maxRSS, rss);\n}\n</code></pre>\n<p>If <code>--json</code> is not used, the output is printed in a human-readable text format:</p>\n<pre><code class=\"language-console\">$ node inspect --probe cli.js:5 --expr 'rss' cli.js\nHit 1 at cli.js:5\n  rss = 54935552\nHit 2 at cli.js:5\n  rss = 55083008\nCompleted\n</code></pre>\n<p>Primitive results are printed directly, while objects and arrays use Chrome\nDevTools Protocol preview data when available. Other non-primitive values\nfall back to the Chrome DevTools Protocol <code>description</code> string.\nExpression failures are recorded as <code>[error] ...</code> lines and do not fail\nthe overall session. If richer text formatting is needed, wrap the expression\nin <code>JSON.stringify(...)</code> or <code>util.inspect(...)</code>.</p>\n<p>When <code>--json</code> is used, the output shape looks like this:</p>\n<pre><code class=\"language-console\">$ node inspect --json --probe cli.js:5 --expr 'rss' cli.js\n{\"v\":1,\"probes\":[{\"expr\":\"rss\",\"target\":[\"cli.js\",5]}],\"results\":[{\"probe\":0,\"event\":\"hit\",\"hit\":1,\"result\":{\"type\":\"number\",\"value\":55443456,\"description\":\"55443456\"}},{\"probe\":0,\"event\":\"hit\",\"hit\":2,\"result\":{\"type\":\"number\",\"value\":55574528,\"description\":\"55574528\"}},{\"event\":\"completed\"}]}\n</code></pre>\n<pre><code class=\"language-json\">{\n  \"v\": 1, // Probe JSON schema version.\n  \"probes\": [\n    {\n      \"expr\": \"rss\", // The expression paired with --probe.\n      \"target\": [\"cli.js\", 5] // [file, line] or [file, line, col].\n    }\n  ],\n  \"results\": [\n    {\n      \"probe\": 0, // Index into probes[].\n      \"event\": \"hit\", // Hit events are recorded in observation order.\n      \"hit\": 1, // 1-based hit count for this probe.\n      \"result\": {\n        \"type\": \"number\",\n        \"value\": 55443456,\n        \"description\": \"55443456\"\n      }\n      // If the expression throws, \"error\" is present instead of \"result\".\n    },\n    {\n      \"probe\": 0,\n      \"event\": \"hit\",\n      \"hit\": 2,\n      \"result\": {\n        \"type\": \"number\",\n        \"value\": 55574528,\n        \"description\": \"55574528\"\n      }\n    },\n    {\n      \"event\": \"completed\"\n      // The final entry is always a terminal event, for example:\n      // 1. { \"event\": \"completed\" }\n      // 2. { \"event\": \"miss\", \"pending\": [0, 1] }\n      // 3. {\n      //      \"event\": \"timeout\",\n      //      \"pending\": [0],\n      //      \"error\": {\n      //       \"code\": \"probe_timeout\",\n      //       \"message\": \"Timed out after 30000ms waiting for probes: app.js:10\"\n      //      }\n      //    }\n      // 4. {\n      //      \"event\": \"error\",\n      //      \"pending\": [0],\n      //      \"error\": {\n      //       \"code\": \"probe_target_exit\",\n      //       \"exitCode\": 1,\n      //       \"stderr\": \"[Error: boom]\",\n      //       \"message\": \"Target exited with code 1 before probes: app.js:10\"\n      //      }\n      //    }\n    }\n  ]\n}\n</code></pre>",
          "displayName": "Probe mode"
        },
        {
          "textRaw": "Watchers",
          "name": "watchers",
          "type": "misc",
          "desc": "<p>It is possible to watch expression and variable values while debugging. On\nevery breakpoint, each expression from the watchers list will be evaluated\nin the current context and displayed immediately before the breakpoint's\nsource code listing.</p>\n<p>To begin watching an expression, type <code>watch('my_expression')</code>. The command\n<code>watchers</code> will print the active watchers. To remove a watcher, type\n<code>unwatch('my_expression')</code>.</p>",
          "displayName": "Watchers"
        },
        {
          "textRaw": "Command reference",
          "name": "command_reference",
          "type": "misc",
          "modules": [
            {
              "textRaw": "Stepping",
              "name": "stepping",
              "type": "module",
              "desc": "<ul>\n<li><code>cont</code>, <code>c</code>: Continue execution</li>\n<li><code>next</code>, <code>n</code>: Step next</li>\n<li><code>step</code>, <code>s</code>: Step in</li>\n<li><code>out</code>, <code>o</code>: Step out</li>\n<li><code>pause</code>: Pause running code (like pause button in Developer Tools)</li>\n</ul>",
              "displayName": "Stepping"
            },
            {
              "textRaw": "Breakpoints",
              "name": "breakpoints",
              "type": "module",
              "desc": "<ul>\n<li><code>setBreakpoint()</code>, <code>sb()</code>: Set breakpoint on current line</li>\n<li><code>setBreakpoint(line)</code>, <code>sb(line)</code>: Set breakpoint on specific line</li>\n<li><code>setBreakpoint('fn()')</code>, <code>sb(...)</code>: Set breakpoint on a first statement in\nfunction's body</li>\n<li><code>setBreakpoint('script.js', 1)</code>, <code>sb(...)</code>: Set breakpoint on first line of\n<code>script.js</code></li>\n<li><code>setBreakpoint('script.js', 1, 'num &#x3C; 4')</code>, <code>sb(...)</code>: Set conditional\nbreakpoint on first line of <code>script.js</code> that only breaks when <code>num &#x3C; 4</code>\nevaluates to <code>true</code></li>\n<li><code>clearBreakpoint('script.js', 1)</code>, <code>cb(...)</code>: Clear breakpoint in <code>script.js</code>\non line 1</li>\n</ul>\n<p>It is also possible to set a breakpoint in a file (module) that\nis not loaded yet:</p>\n<pre><code class=\"language-console\">$ node inspect main.js\n&#x3C; Debugger listening on ws://127.0.0.1:9229/48a5b28a-550c-471b-b5e1-d13dd7165df9\n&#x3C; For help, see: https://nodejs.org/learn/getting-started/debugging\n&#x3C;\nconnecting to 127.0.0.1:9229 ... ok\n&#x3C; Debugger attached.\n&#x3C;\nBreak on start in main.js:1\n> 1 const mod = require('./mod.js');\n  2 mod.hello();\n  3 mod.hello();\ndebug> setBreakpoint('mod.js', 22)\nWarning: script 'mod.js' was not loaded yet.\ndebug> c\nbreak in mod.js:22\n 20 // USE OR OTHER DEALINGS IN THE SOFTWARE.\n 21\n>22 exports.hello = function() {\n 23   return 'hello from module';\n 24 };\ndebug>\n</code></pre>\n<p>It is also possible to set a conditional breakpoint that only breaks when a\ngiven expression evaluates to <code>true</code>:</p>\n<pre><code class=\"language-console\">$ node inspect main.js\n&#x3C; Debugger listening on ws://127.0.0.1:9229/ce24daa8-3816-44d4-b8ab-8273c8a66d35\n&#x3C; For help, see: https://nodejs.org/learn/getting-started/debugging\n&#x3C;\nconnecting to 127.0.0.1:9229 ... ok\n&#x3C; Debugger attached.\nBreak on start in main.js:7\n  5 }\n  6\n> 7 addOne(10);\n  8 addOne(-1);\n  9\ndebug> setBreakpoint('main.js', 4, 'num &#x3C; 0')\n  1 'use strict';\n  2\n  3 function addOne(num) {\n> 4   return num + 1;\n  5 }\n  6\n  7 addOne(10);\n  8 addOne(-1);\n  9\ndebug> cont\nbreak in main.js:4\n  2\n  3 function addOne(num) {\n> 4   return num + 1;\n  5 }\n  6\ndebug> exec('num')\n-1\ndebug>\n</code></pre>",
              "displayName": "Breakpoints"
            },
            {
              "textRaw": "Information",
              "name": "information",
              "type": "module",
              "desc": "<ul>\n<li><code>backtrace</code>, <code>bt</code>: Print backtrace of current execution frame</li>\n<li><code>list(5)</code>: List scripts source code with 5 line context (5 lines before and\nafter)</li>\n<li><code>watch(expr)</code>: Add expression to watch list</li>\n<li><code>unwatch(expr)</code>: Remove expression from watch list</li>\n<li><code>unwatch(index)</code>: Remove expression at specific index from watch list</li>\n<li><code>watchers</code>: List all watchers and their values (automatically listed on each\nbreakpoint)</li>\n<li><code>repl</code>: Open debugger's repl for evaluation in debugging script's context</li>\n<li><code>exec expr</code>, <code>p expr</code>: Execute an expression in debugging script's context and\nprint its value</li>\n<li><code>profile</code>: Start CPU profiling session</li>\n<li><code>profileEnd</code>: Stop current CPU profiling session</li>\n<li><code>profiles</code>: List all completed CPU profiling sessions</li>\n<li><code>profiles[n].save(filepath = 'node.cpuprofile')</code>: Save CPU profiling session\nto disk as JSON</li>\n<li><code>takeHeapSnapshot(filepath = 'node.heapsnapshot')</code>: Take a heap snapshot\nand save to disk as JSON</li>\n</ul>",
              "displayName": "Information"
            },
            {
              "textRaw": "Execution control",
              "name": "execution_control",
              "type": "module",
              "desc": "<ul>\n<li><code>run</code>: Run script (automatically runs on debugger's start)</li>\n<li><code>restart</code>: Restart script</li>\n<li><code>kill</code>: Kill script</li>\n</ul>",
              "displayName": "Execution control"
            },
            {
              "textRaw": "Various",
              "name": "various",
              "type": "module",
              "desc": "<ul>\n<li><code>scripts</code>: List all loaded scripts</li>\n<li><code>version</code>: Display V8's version</li>\n</ul>",
              "displayName": "Various"
            }
          ],
          "displayName": "Command reference"
        },
        {
          "textRaw": "Advanced usage",
          "name": "advanced_usage",
          "type": "misc",
          "modules": [
            {
              "textRaw": "V8 inspector integration for Node.js",
              "name": "v8_inspector_integration_for_node.js",
              "type": "module",
              "desc": "<p>V8 Inspector integration allows attaching Chrome DevTools to Node.js\ninstances for debugging and profiling. It uses the\n<a href=\"https://chromedevtools.github.io/devtools-protocol/\">Chrome DevTools Protocol</a>.</p>\n<p>V8 Inspector can be enabled by passing the <code>--inspect</code> flag when starting a\nNode.js application. It is also possible to supply a custom port with that flag,\ne.g. <code>--inspect=9222</code> will accept DevTools connections on port 9222.</p>\n<p>Using the <code>--inspect</code> flag will execute the code immediately before debugger is connected.\nThis means that the code will start running before you can start debugging, which might\nnot be ideal if you want to debug from the very beginning.</p>\n<p>In such cases, you have two alternatives:</p>\n<ol>\n<li><code>--inspect-wait</code> flag: This flag will wait for debugger to be attached before executing the code.\nThis allows you to start debugging right from the beginning of the execution.</li>\n<li><code>--inspect-brk</code> flag: Unlike <code>--inspect</code>, this flag will break on the first line of the code\nas soon as debugger is attached. This is useful when you want to debug the code step by step\nfrom the very beginning, without any code execution prior to debugging.</li>\n</ol>\n<p>So, when deciding between <code>--inspect</code>, <code>--inspect-wait</code>, and <code>--inspect-brk</code>, consider whether you want\nthe code to start executing immediately, wait for debugger to be attached before execution,\nor break on the first line for step-by-step debugging.</p>\n<pre><code class=\"language-console\">$ node --inspect index.js\nDebugger listening on ws://127.0.0.1:9229/dc9010dd-f8b8-4ac5-a510-c1a114ec7d29\nFor help, see: https://nodejs.org/learn/getting-started/debugging\n</code></pre>\n<p>(In the example above, the UUID dc9010dd-f8b8-4ac5-a510-c1a114ec7d29\nat the end of the URL is generated on the fly, it varies in different\ndebugging sessions.)</p>",
              "displayName": "V8 inspector integration for Node.js"
            }
          ],
          "displayName": "Advanced usage"
        }
      ]
    }
  ]
}