0.0.2 • Published 8 years ago

jq-stream v0.0.2

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

jq-stream

Install

npm i --save jq-stream

Usage

jq(source, jsonpath, callback, done)

Example

var jq = require('jq-stream');

jq(
  '/path/to/file', 
  'rows.*', 
  function (row) { 
    /* process */
  }, 
  function done() {}
);