🚀 Launch Week Day 5:Introducing Immutable Scans.Learn More →
Socket
Book a DemoInstallSign in
Socket

local-storage-blob-store

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

local-storage-blob-store

blob store that stores blobs on the browser's localStorage

latest
Source
npmnpm
Version
0.0.3
Version published
Weekly downloads
11
-65.62%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

blob

FAQs

Package last updated on 25 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts