key-value-file-store

1.1.1 • Public • Published

Key value file store

Simple key value store where and each value is a file.

This project is a fork of lossy-store where raw fs is replaced with atomic-file-rw to provide browser support.

api

store = LossyStore(dir, codec?)

create a lossy store with the given codec (or JSON by default) at the dir

store.has(key)

returns true if this key is currently in the store.

store.ensure(key, cb)

ensure that this key is loaded from the file system. if the file has already been read, cb is called immediately. if set is called while waiting for the filesystem, cb is called immediately.

store.get (key, cb)

get the current value for key, loading it if necessary

store.get (key) => value

return the currently set value for key. may be null.

store.set(key, value)

Set a new value. this will trigger a write to be performed (at some point)

store.delete(key)

Delete a key-value from the store.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i key-value-file-store

Weekly Downloads

52

Version

1.1.1

License

MIT

Unpacked Size

7.72 kB

Total Files

6

Last publish

Collaborators

  • staltz
  • arj03