Documentation / @agentick/devtools / startDevToolsServer
Function: startDevToolsServer()
startDevToolsServer(
config?):DevToolsServer
Defined in: start.ts:20
Start a DevTools server.
Parameters
config?
Returns
Example
typescript
import { startDevToolsServer } from '@agentick/devtools';
const server = startDevToolsServer({ port: 3001, debug: true });
console.log(`DevTools: ${server.getUrl()}`);
// Later...
server.stop();