0.1.2 • Published 10 years ago

json-mask-stream v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

Pass thru specific parts of a JSON object strings in a stream and preserves the structure of the included elements.

Install

npm install json-mask-stream

Usage

Sample logfile.json line:

{"ip": "198.55.125.23", "timestamp":"2014-02-24 10:29:42", "url": "http:\/\/somedomain.com"}
var fs             = require('fs');
var logstream      = fs.createReadStream('logfile.json');
var split          = new require('split')();
var JsonMaskStream = require('json-mask-stream');
var maskStream     = new JsonMaskStream('url,timestamp');

logstream
.pipe(split)
.pipe(maskStream)
.pipe(process.stdout) //  {"url": "http:\/\/somedomain.com", "timestamp":"2014-02-24 10:29:42"}

License

MIT