fs-blob-store
Streamable content addressable blob object store that is streams2 and implements the blob store interface on top of the fs module
Last updated 12 years ago by maxogden .
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 1
This Month 1
Last Day 1
Last Week 0
Last Month 0
Dependencies (3)
Dev Dependencies (4)
Dependents (3)

Copyright 2013 - present © cnpmjs.org | Home |