global-couch-stream
v1.0.0
Published
Readable changes feed stream from all databases.
Downloads
5
Readme
global-couch-stream
Readable changes feed stream from all databases.
Usage
var feed = require('global-couch-stream');
var es = require('event-stream');
es.pipeline(
feed({
url: 'http://localhost:5984',
follow: {
include_docs: true
}
}),
es.stringify(),
process.stdout
);
Contributing
- Write tests with tap
- Lint your code with
npm run jshint
- Run the tests with
npm test
(c) 2013 Johannes J. Schmidt