Skip to content

BootRuntime

Defined in: packages/core/src/kernel/types.ts:1938

Minimal runtime interface for booting a UnixImage.

Implement on any object that boots an image (platform adapters, test harnesses). Defined in core so UnixBuilder.boot() accepts a runtime without a hard dep on @fishnet/runtime.

The full Runtime interface in @fishnet/runtime extends this with platform capabilities (asset loading, ESM import, fetch, WASM compile).

boot(image, opts?): Promise<UnixInstance>

Defined in: packages/core/src/kernel/types.ts:1939

UnixImage

BootOpts

Promise<UnixInstance>