rxjs-json-stream
v0.0.1
Published
Simple integration between RxJS and JSONStream
Downloads
2
Readme
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).