npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fs-blob-store

6.0.0

@mafintosh

npmHomeRepoSnykSocket
Downloads:64448
$ npm install fs-blob-store
DailyWeeklyMonthlyYearly

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