CDBDriver
A driver library for connecting to a CouchDB instance through JavaScript.
CouchDB seems the perfect database for JavaScript applications since it uses
JSON as data structure. On first sight, this makes it really easy to interact
with a CouchDB instance. But endless encapsulation of asynchroneous requests
and their callbacks gets annoying fast.
Thus this library provides both, asynchroneous and synchroneous methods.
Performing synchroneous requests on the main thread is deprecated and should not
be used in production environments, even if its provided by this library.
For further information on how to use this library check out the documentation.