diff --git a/doc/api/inspector.md b/doc/api/inspector.md index 41d96a0024e934..7cad01c0410722 100644 --- a/doc/api/inspector.md +++ b/doc/api/inspector.md @@ -12,11 +12,11 @@ It can be accessed using: const inspector = require('inspector'); ``` -## inspector.close() +## `inspector.close()` Deactivate the inspector. Blocks until there are no active connections. -## inspector.console +## `inspector.console` * {Object} An object to send messages to the remote inspector console. @@ -27,7 +27,7 @@ require('inspector').console.log('a message'); The inspector console does not have API parity with Node.js console. -## inspector.open(\[port\[, host\[, wait\]\]\]) +## `inspector.open([port[, host[, wait]]])` * `port` {number} Port to listen on for inspector connections. Optional. **Default:** what was specified on the CLI. @@ -46,13 +46,13 @@ and flow control has been passed to the debugger client. See the [security warning](cli.html#inspector_security) regarding the `host` parameter usage. -## inspector.url() +## `inspector.url()` * Returns: {string|undefined} Return the URL of the active inspector, or `undefined` if there is none. -## inspector.waitForDebugger() +## `inspector.waitForDebugger()` @@ -62,14 +62,14 @@ Blocks until a client (existing or connected later) has sent An exception will be thrown if there is no active inspector. -## Class: inspector.Session +## Class: `inspector.Session` * Extends: {EventEmitter} The `inspector.Session` is used for dispatching messages to the V8 inspector back-end and receiving message responses and notifications. -### Constructor: new inspector.Session() +### Constructor: `new inspector.Session()` @@ -78,7 +78,7 @@ Create a new instance of the `inspector.Session` class. The inspector session needs to be connected through [`session.connect()`][] before the messages can be dispatched to the inspector backend. -### Event: 'inspectorNotification' +### Event: `'inspectorNotification'` @@ -95,7 +95,7 @@ session.on('inspectorNotification', (message) => console.log(message.method)); It is also possible to subscribe only to notifications with specific method: -### Event: <inspector-protocol-method> +### Event: ``; @@ -116,14 +116,14 @@ session.on('Debugger.paused', ({ params }) => { // [ '/the/file/that/has/the/breakpoint.js:11:0' ] ``` -### session.connect() +### `session.connect()` Connects a session to the inspector back-end. -### session.connectToMainThread() +### `session.connectToMainThread()` @@ -131,7 +131,7 @@ added: v12.11.0 Connects a session to the main thread inspector back-end. An exception will be thrown if this API was not called on a Worker thread. -### session.disconnect() +### `session.disconnect()` @@ -141,7 +141,7 @@ with an error. [`session.connect()`][] will need to be called to be able to send messages again. Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints. -### session.post(method\[, params\]\[, callback\]) +### `session.post(method[, params][, callback])`