localstream

access localstorage with the node stream API


Keywords
localstorage, stream, streams
License
BSD-3-Clause
Install
npm install localstream@1.0.0

Documentation

localstream

npm install localstream

use html5 localstorage with node stream api

var ls = require('localstream');

ls is a stream and speaks stream events: storage, error and end. that means you can pipe storage to anything that accepts streams, such as an XHR.

##Example

ls.on('storage', function(data){
  console.log(data);    
})

ls.on('error', function(err){
  console.log(err);
})

ls.set("key", value);
ls.get("key");