tRAGar - v0.1.0
    Preparing search index...

    Interface FileStoreConfig

    File store config — persists corpus data in a local filesystem directory. Node.js environments only; throws InvalidConfig immediately in browsers. Written files are byte-identical to stores.opfs() output for the same data.

    interface FileStoreConfig {
        dirPath: string;
        type: "file";
    }
    Index

    Properties

    Properties

    dirPath: string

    Absolute or relative path to the root directory. Files are written to {dirPath}/tragar/{namespace}/.

    type: "file"