Automerge Repo - v2.3.0-alpha.0
    Preparing search index...
    interface RepoConfig {
        denylist?: AutomergeUrl[];
        enableRemoteHeadsGossiping?: boolean;
        isEphemeral?: boolean;
        network?: NetworkAdapterInterface[];
        peerId?: PeerId;
        saveDebounceRate?: number;
        sharePolicy?: SharePolicy;
        storage?: StorageAdapterInterface;
    }
    Index

    Properties

    denylist?: AutomergeUrl[]

    A list of automerge URLs which should never be loaded regardless of what messages are received or what the share policy is. This is useful to avoid loading documents that are known to be too resource intensive.

    enableRemoteHeadsGossiping?: boolean

    Whether to enable the experimental remote heads gossiping feature

    isEphemeral?: boolean

    Indicates whether other peers should persist the sync state of this peer. Sync state is only persisted for non-ephemeral peers

    A list of network adapters (more can be added at runtime).

    peerId?: PeerId

    Our unique identifier

    saveDebounceRate?: number

    The debounce rate in milliseconds for saving documents. Defaults to 100ms.

    sharePolicy?: SharePolicy

    Normal peers typically share generously with everyone (meaning we sync all our documents with all peers). A server only syncs documents that a peer explicitly requests by ID.

    A storage adapter can be provided, or not