tags:

views:

81

answers:

1

How can I get a list of all design documents in CouchDB? Using a http query, not futon.

+1  A: 

This is the exact query Futon does internally:

GET /dbname/_all_docs?startkey="_design/"&endkey="_design0"&include_docs=true
mikeal
great, thanks a lot! karlthorwald - aka