@runno/wasi
    Preparing search index...

    Class WASIXContext

    WASIXContext

    The context in which a WASIX binary is executed. Mirrors WASIContext but adds optional provider slots for the WASIX-specific syscall surface (clock, random, TTY, threads, futex, signals, sockets, proc). All provider methods are synchronous.

    Provider slots that are not supplied return ENOSYS from the corresponding wasix_32v1 syscall handler.

    Index

    Constructors

    Properties

    args: string[]
    debug?: DebugFn
    env: Record<string, string>
    fs: WASIFS
    isTTY: boolean
    signals?: SignalsProvider
    sockets?: SocketsProvider
    stderr: (err: string) => void
    stdin: (maxByteLength: number) => null | string
    stdout: (out: string) => void
    threads?: ThreadsProvider