0.0.3 • Published 8 years ago

local-storage-blob-store v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

local-storage-blob-store

blob store that stores blobs on the browser's localStorage

npm install local-storage-blob-store

build status

blob-store-compatible

Usage

var store = require('local-storage-blob-store')
var blob = store()

blob.createWriteStream({ key: 'cool' }).end('beans', readback)

function readback () {
  blob.createReadStream({ key: 'cool' }).on('data', ondata)
  function ondata (buf) {
    console.log(buf.toString())
  }
}

License

MIT