Skip to main content

Overview

Build complex applications across multiple files. buntime.sh supports full project structures with imports, dependencies, and organized code.
Full documentation coming soon. See API Reference for multi-file execution examples.

Quick Example

await client.execute({
  sessionId: session.id,
  files: [
    { path: 'utils.ts', content: 'export const add = (a, b) => a + b;' },
    { path: 'index.ts', content: 'import { add } from "./utils"; console.log(add(2, 3));' }
  ],
  command: 'bun run index.ts'
});