2.0.0 • Published 9 years ago

dat-blob-store v2.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

dat-blob-store

The blob store dat uses per default

npm install dat-blob-store

build status

Usage

var store = require('dat-blob-store')
var blobs = store('./some-folder')

var ws = blobs.createWriteStream('test.txt')

ws.write('hello world\n')
ws.end(function () {
  console.log(ws.key) // use this key (a hash) to read out the blob
})

The blob store will store two copies of the file written. One in test.txt and one content-addressed in data.dat/blobs.

License

MIT