Skip to main content
Module

x/earthstar/src/entries/npm.ts>AttachmentDriverFilesystem

Storage for private, distributed, offline-first applications.
Go to Latest
class AttachmentDriverFilesystem
import { AttachmentDriverFilesystem } from "https://deno.land/x/earthstar@v10.0.2/src/entries/npm.ts";

An attachment driver which persists attachments using the local filesystem. Works with Node.

Constructors

new
AttachmentDriverFilesystem(path: string)

Properties

private
closed: boolean
private
path: string

Methods

private
ensurePath(...args: string[])
close(erase: boolean): Promise<void>
erase(formatName: string, attachmentHash: string)
filter(attachments: Record<string, Set<string>>): Promise<{ format: string; hash: string; }[]>
getAttachment(formatName: string, attachmentHash: string): Promise<DocAttachment | undefined>
isClosed(): boolean
stage(formatName: string, attachment: ReadableStream<Uint8Array> | Uint8Array)