memfs
memfs copied to clipboard
Reactivity, file watching
Deno file system events:
/**
* Represents a unique file system event yielded by a
* {@linkcode Deno.FsWatcher}.
*
* @category File System */
export interface FsEvent {
/** The kind/type of the file system event. */
kind:
| "any"
| "access"
| "create"
| "modify"
| "rename"
| "remove"
| "other";
/** An array of paths that are associated with the file system event. */
paths: string[];
/** Any additional flags associated with the event. */
flag?: FsEventFlag;
}
Excited for CoreFileSystemObserver (this gives me good fidelity for a Jest OPFS mock!), which I'm guessing falls under this issue. Any ETA for the implementations? Thanks for the amazing work!