wdl-stream
v1.0.3
Published
Stream parsing WDL files
Downloads
5
Readme
wdl-stream
Stream parsing of Web Distribution Log
Usage
npm install wdl-stream
var wdlstream = require( "wdl-stream" );
fs.createReadStream( "cloudfront.log" )
.pipe( wdlstream() )
.on( "data", function ( queryObject ) {
// do something awesome
})