*** title: Browser Runtime Quickstart description: >- Minimal example for creating a workspace, launching a browser runtime, and stopping it. ------------ ```ts import { Bctrl } from "@bctrl/sdk"; const client = new Bctrl({ apiKey: process.env.BCTRL_API_KEY!, }); const workspace = await client.workspaces.create({ name: "quickstart", }); const runtime = await workspace.runtimes.browser("main").playwright({ launch: { mode: "ephemeral", }, }); await runtime.page.goto("https://example.com"); await runtime.stop(); ```