Documentation
    Preparing search index...

    Interface PajaRawOptions

    Raw, unnormalized options accepted from CLI arguments or config files.

    interface PajaRawOptions {
        command?: PajaCommand;
        configPath?: string;
        host?: string;
        port?: string | number;
        readyTimeoutMs?: string | number;
        simulation?: PajaSimulationRawOptions;
        targetUrl?: string;
    }
    Index

    Properties

    command?: PajaCommand

    Optional managed command to start before serving Paja.

    configPath?: string

    Optional JSON config file path.

    host?: string

    Hostname or IP address for the Paja HTTP server.

    port?: string | number

    Runtime HTTP port.

    readyTimeoutMs?: string | number

    Target readiness timeout in milliseconds.

    Simulation controls for injected shell domains.

    targetUrl?: string

    App dev-server URL that Paja should load.