prorm API Reference
    Preparing search index...

    Interface UnqliteStoreOptions

    Connection options for UnqliteStore.

    interface UnqliteStoreOptions {
        path?: string;
        client?: UnqliteClientLike;
    }
    Index
    path?: string

    Filesystem path for the UnQLite database file. Defaults to './data/unqlite.db'.

    client?: UnqliteClientLike

    A pre-built unqlite client (or a compatible mock). When provided, connect() uses it directly and skips require('unqlite') entirely — this is how tests inject a mock without the real driver installed.