dat-blob-store

2.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i dat-blob-store

Weekly Downloads

3

Version

2.0.0

License

MIT

Last publish

Collaborators

  • mafintosh
  • karissa
  • maxogden