Skip to content

fbaiodias/local-storage-blob-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

blob store that stores blobs on the browser's localStorage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published