Skip to content

Documentation / @agentick/devtools / startDevToolsServer

Function: startDevToolsServer()

startDevToolsServer(config?): DevToolsServer

Defined in: start.ts:20

Start a DevTools server.

Parameters

config?

DevToolsServerConfig

Returns

DevToolsServer

Example

typescript
import { startDevToolsServer } from '@agentick/devtools';

const server = startDevToolsServer({ port: 3001, debug: true });
console.log(`DevTools: ${server.getUrl()}`);

// Later...
server.stop();

Released under the ISC License.