retry_connect
Manually reconnects to the Node.js debugger, allowing debugging continuation. Optionally specify a port to connect to, defaulting to 9229.
Instructions
Manually triggers a reconnection attempt to the Node.js debugger
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | No | Optional port to connect to. Defaults to current port (9229) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"port": {
"description": "Optional port to connect to. Defaults to current port (9229)",
"type": "number"
}
},
"type": "object"
}