step_debug
Step through Node.js code execution line-by-line to identify and resolve issues. Perform actions like next, step, continue, and out to control debugging flow and analyze runtime behavior.
Instructions
Step through code execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Debug action to perform |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Debug action to perform",
"enum": [
"next",
"step",
"continue",
"out"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}