fs-blob-store

v6.0.0
blob store that stores blobs on the local file system
blob store fs file system local

fs-blob-store

blob store that stores blobs on the local file system

npm install fs-blob-store

build status dat

blob-store-compatible

Usage

var fs = require('fs-blob-store')
var blobs = fs('some-directory')

var ws = blobs.createWriteStream({
  key: 'some/path/file.txt'
})

ws.write('hello world\n')
ws.end(function() {
  var rs = blobs.createReadStream({
    key: 'some/path/file.txt'
  })

  rs.pipe(process.stdout)
})

License

MIT

npm i fs-blob-store

Metadata

  • MIT
  • Whatever
  • Mathias Buus
  • released 11/18/2020

Downloads