diff --git a/locale/en/docs/guides/debugging_getting_started.md b/locale/en/docs/guides/debugging_getting_started.md new file mode 100644 index 0000000000000..d5b2fb5689a0a --- /dev/null +++ b/locale/en/docs/guides/debugging_getting_started.md @@ -0,0 +1,173 @@ +--- +title: Debugging - Getting Started +layout: docs.hbs +--- + +# Debugging Guide + +This guide will help you get started debugging your Node.js apps and scripts. + +## Enable Inspector + +**NOTE**: The `--inspect` option and [Inspector Protocol][] are _experimental_ and may change. + +When started with the **--inspect** switch, a Node.js process listens via WebSockets +for diagnostic commands as defined by the [Inspector Protocol][], +by default at host and port 127.0.0.1:9229. Each process is also assigned a +unique [UUID][] (e.g. `0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e`). + +Inspector clients must know and specify host address, port, and UUID to connect +to the WebSocket interface. The full URL is +`ws://127.0.0.1:9229/0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e`, of course dependent +on actual host and port and with the correct UUID for the instance. + +Inspector also includes an HTTP endpoint to serve metadata about the debuggee, +including its WebSocket URL, UUID, and Chrome DevTools URL. Get this metadata +by sending an HTTP request to `http://[host:port]/json/list`. This returns a +JSON object like the following; use the `webSocketDebuggerUrl` property as the +URL to connect directly to Inspector. + +```javascript +{ + "description": "node.js instance", + "devtoolsFrontendUrl": "chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:9229/0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e", + "faviconUrl": "https://nodejs.org/static/favicon.ico", + "id": "0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e", + "title": "node", + "type": "node", + "url": "file://", + "webSocketDebuggerUrl": "ws://127.0.0.1:9229/0f2c936f-b1cd-4ac9-aab3-f63b0f33d55e" +} +``` + +A Node.js process started *without* `--inspect` can also be instructed to start +listening for debugging messages by signaling it with `SIGUSR1` (on Linux and +OS X). As of Node 7 this activates the legacy Debugger API; in Node 8 and later +it will activate the Inspector API. + +--- + +## Inspector Clients + +Several commercial and open source tools can connect to Node's Inspector. Basic +info on these follows: + +#### [node-inspect](https://github.com/nodejs/node-inspect) + +* CLI Debugger supported by the Node.js Foundation which uses the [Inspector Protocol][]. +* A version is bundled with Node and can be used with `node inspect myscript.js`. +* The latest version can also be installed independently (e.g. `npm install -g node-inspect`) + and used with `node-inspect myscript.js`. + +#### [Chrome DevTools](https://github.com/ChromeDevTools/devtools-frontend) 55+ + +* **Option 1**: Open `chrome://inspect` in a Chromium-based + browser. Click the Configure button and ensure your target host and port + are listed. +* **Option 2**: Copy the `devtoolsFrontendUrl` from the output of `/json/list` + (see above) or the --inspect hint text and paste into Chrome. + +#### [VS Code](https://github.com/microsoft/vscode) 1.10+ + +* In the Debug panel, click the settings icon to open `.vscode/launch.json`. + Select "Node.js" for initial setup. + +#### [JetBrains WebStorm](https://www.jetbrains.com/webstorm/) 2017.1+ and other JetBrains IDEs + +* Create a new Node.js debug configuration and hit Debug. `--inspect` will be used + by default for Node.js 7+. To disable uncheck `js.debugger.node.use.inspect` in + the IDE Registry. + +#### [chrome-remote-interface](https://github.com/cyrus-and/chrome-remote-interface) + +* Library to ease connections to Inspector Protocol endpoints. + +--- + +## Command-line options + +The following table lists the impact of various runtime flags on debugging: + +
Flag | Meaning |
---|---|
--inspect | +
+
|
+
--inspect=port | +
+
|
+
--inspect-brk | +
+
|
+
--inspect-brk=port | +
+
|
+
node inspect script.js |
+
+
|
+