Licence
BSD
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
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");