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.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Build complex applications with multiple files
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'
});