set_breakpoint
Pause execution at a specific line in a Node.js process by setting a breakpoint. Specify the file URL and line number, optionally adding a condition for precise debugging control.
Instructions
Set a breakpoint in the debugged process. Use full file:// URLs for reliable breakpoint hits.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
condition | No | Optional condition for the breakpoint | |
file | Yes | File URL or path (use file:///absolute/path/to/file.js for best results) | |
line | Yes | Line number (1-based) |