fs-blob-store

6.0.0 • Public • Published

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

/fs-blob-store/

    Package Sidebar

    Install

    npm i fs-blob-store

    Weekly Downloads

    9,791

    Version

    6.0.0

    License

    MIT

    Unpacked Size

    5.66 kB

    Total Files

    7

    Last publish

    Collaborators

    • mafintosh
    • maxogden