1.0.1 • Published 4 years ago

slim-blob-store v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

slim-blob-store

Blob store that does the following:

  • Writes to provided local and remote blob stores
  • Uses local blob store as a read cache, with the remote as a fallback
npm install slim-blob-store

build status

blob-store-compatible

Usage

const slim = require("slim-blob-store");

const blobs = slim(localBlobStore, remoteBlobStore);

const ws = blobs.createWriteStream({ key: "some-key" });
ws.end("hello slim blob!");
// `hello slim blob!` will be written to the local and the remote

blobs.createReadStream({ key: "some-key" }).pipe(process.stdout);
// If `some-key` is already in localBlobStore it will just be read from that one.
// If not it will try and copy it from remoteBlobStore

License

MIT

1.0.1

4 years ago

1.0.0

4 years ago

0.1.0

4 years ago