rxjs-json-stream

0.0.1 • Public • Published

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).

/rxjs-json-stream/

    Package Sidebar

    Install

    npm i rxjs-json-stream

    Weekly Downloads

    2

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • tsouza