README
dot-store-fs
Adds filesystem read/write to dot-store.
Feature | Built With |
---|---|
Concurrent file access | proper-lockfile |
File glob | node-glob |
Fuzzy immutable "dot" accessor | camel-dot-prop-immutable |
import DotStore from "dot-store"
import withFs from "dot-store-fs"
const store = new DotStore()
await withFs(store, { pattern: "**/*", root: __dirname })
Then use the store as normal.