• File: all_docs.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/JSONStream/examples/all_docs.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 459 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var request = require('request')
  , JSONStream = require('JSONStream')
  , es = require('event-stream')

var parser = JSONStream.parse(['rows', true]) //emit parts that match this path (any element of the rows array)
  , req = request({url: 'http://isaacs.couchone.com/registry/_all_docs'})
  , logger = es.mapSync(function (data) {  //create a stream that logs to stderr,
    console.error(data)
    return data  
  })

req.pipe(parser)
parser.pipe(logger)