0.0.1 • Published 8 years ago

rxjs-json-stream v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

RxJS JSONStream

Simple integration between RxJS and JSONStream

install

npm install rxjs-json-stream --save

example

const js = require("fs");
const stream = require("rxjs-json-stream");

const data = fs.createReadStream("data.json");

stream("*..id", data)
  .map(entry => entry + 1)
  .subscribe(entry => console.log(entry));

LICENSE

Code and documentation released under The MIT License (MIT).