summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/JSONStream/examples/all_docs.js
blob: f20781e18c9dbfce1c27b2cd03f0612997c5443c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)