@aster-rpc/aster API Reference
    Preparing search index...

    Interface AsterServerOptions

    Options for AsterServer.

    interface AsterServerOptions {
        services: object[];
        config?: Partial<AsterConfig>;
        identity?: string;
        peer?: string;
        allowAllConsumers?: boolean;
        interceptors?: unknown[];
    }
    Index

    Properties

    services: object[]
    config?: Partial<AsterConfig>
    identity?: string

    Path to .aster-identity file. Overrides config.identityFile.

    peer?: string

    Peer name for identity file lookup.

    allowAllConsumers?: boolean

    Allow all consumers without credentials (dev mode). Default: true.

    interceptors?: unknown[]