localstream
v1.0.0
Published
access localstorage with the node stream API
Readme
localstream
npm install localstreamuse 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");