1.0.0 • Published 11 years ago

localstream v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

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");