views:

45

answers:

1

Is there a way to implement captcha on a couchdb app?

I am writing a signup page on my application and I want to have protection against spam signups. It seems that I would have to do that with a server alongside couchdb. I was hoping to avoid that. Any ideas?

A: 

You could add documents to CouchDB in a "pending" state and then use a changes listener to update them to an "approved" state.

You could even stick that code in a design document and use the changes consumer I wrote in node http://www.mikealrogers.com/archives/726

mikeal