start_node_process
Initiate a Node.js process with debugging enabled by specifying the script path, optional arguments, and working directory. Facilitates AI-driven process management and debugging for developers.
Instructions
Start a Node.js process with debugging enabled
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | Arguments to pass to the script | |
cwd | No | Working directory (optional) | |
script | Yes | Path to the Node.js script to run |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"description": "Arguments to pass to the script",
"items": {
"type": "string"
},
"type": "array"
},
"cwd": {
"description": "Working directory (optional)",
"type": "string"
},
"script": {
"description": "Path to the Node.js script to run",
"type": "string"
}
},
"required": [
"script"
],
"type": "object"
}