fs-blob-store
blob store that stores blobs on the local file system
Last updated 5 years ago by mafintosh .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install fs-blob-store 
SYNC missed versions from official npm registry.

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

Current Tags

  • 6.0.0                                ...           latest (5 years ago)

14 Versions

  • 6.0.0                                ...           5 years ago
  • 5.2.1                                ...           10 years ago
  • 5.2.0                                ...           10 years ago
  • 5.1.1                                ...           12 years ago
  • 5.1.0                                ...           12 years ago
  • 5.0.0                                ...           12 years ago
  • 4.0.3                                ...           12 years ago
  • 4.0.2                                ...           12 years ago
  • 4.0.1                                ...           12 years ago
  • 4.0.0                                ...           12 years ago
  • 3.0.2                                ...           12 years ago
  • 3.0.1                                ...           12 years ago
  • 3.0.0                                ...           12 years ago
  • 2.0.0                                ...           12 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (4)
Dev Dependencies (3)
Dependents (3)

Copyright 2013 - present © cnpmjs.org | Home |