prorm API Reference
    Preparing search index...

    Interface GeodeStoreOptions

    Connection options for GeodeStore.

    interface GeodeStoreOptions {
        baseURL?: string;
        client?: GeodeHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the Geode REST server. Defaults to http://localhost:8080.

    client?: GeodeHttpClient

    Pre-built HTTP client; when given it is used verbatim and baseURL is ignored.

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.