mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-04 03:01:23 -06:00
14 lines
459 B
JavaScript
14 lines
459 B
JavaScript
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)
|