1.0.0 • Published 10 years ago

global-couch-stream v1.0.0

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

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

  1. Write tests with tap
  2. Lint your code with npm run jshint
  3. Run the tests with npm test

(c) 2013 Johannes J. Schmidt