dot-store-fs

Adds filesystem read/write to dot-store

Usage no npm install needed!

<script type="module">
  import dotStoreFs from 'https://cdn.skypack.dev/dot-store-fs';
</script>

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.