function
jsc.startRemoteDebugger
host?: string,
port?: number
): void;
Starts a remote debugging socket server on the given port.
This exposes JavaScriptCore's built-in debugging server. It is separate from Bun's debugger (bun --inspect).
This is untested and may not be supported on macOS.
@param host
The address to listen on. Defaults to "127.0.0.1".
@param port
The port to listen on. Defaults to 9230.