Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.buntime.sh/llms.txt

Use this file to discover all available pages before exploring further.

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'
});