prorm API Reference
    Preparing search index...

    Interface ImmudbStoreOptions

    Connection options for ImmudbStore.

    interface ImmudbStoreOptions {
        host?: string;
        port?: number;
        user?: string;
        password?: string;
        database?: string;
        client?: ImmudbClientLike;
    }
    Index
    host?: string
    port?: number
    user?: string
    password?: string
    database?: string
    client?: ImmudbClientLike

    A pre-built client to use instead of the lazy require. When provided, connect() uses it verbatim (and skips login/useDatabase).