An open API service indexing awesome lists of open source software.

https://github.com/mikeal/node.couch.js

CouchDB + node.js == Crazy Delicious
https://github.com/mikeal/node.couch.js

Last synced: 2 months ago
JSON representation

CouchDB + node.js == Crazy Delicious

Awesome Lists containing this project

README

        

# node.couch.js

This a repository full of all kinds of CouchDB + node.js goodies. This is not, however, a CouchDB client library.

## changes

To use the changes service:

> cd changes
> node service.js http://localhost:5984

This will start the service, look for any design documents, and start any change listeners you've defined. It also checks every minute for new databases.

To define a new listener in your design doc:


{ ....

"changes":"var sys = require('sys');
var listener = function (change) {
sys.puts(JSON.stringify(change));
}
exports.listener = listener;",
}