Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Releases for jqCouch - CouchDB connection plugin


jqCouch - CouchDB connection plugin 2.0.2

Fixed a bug when passing other than Strings as query arguments.

jqCouch - CouchDB connection plugin 2.0.1

This release is completly rewritten and doesn't work with the previous release.
jqCouch uses now connections to handle different tasks. It also support inner caching of results.

Examples can be found inside the source file and the testsuite included in the package.

Here are some basic tasks:


Database

var dbc = $.jqCouch.connection('db');
dbc.exists('database_name');

---

if ($.jqCouch.connection('db').create('database_name').ok) {
    alert("database created");
}

jqCouch - CouchDB connection plugin 1.0.9

Updated to work with the latest CouchDB (>=0.7.0a575).
Mostly changed the way views are saved.

jqCouch - CouchDB connection plugin 1.0.8

Updated to work with newer couchDB version (0.7.0a550)

jqCouch - CouchDB connection plugin 1.0.7

Some minor bug fixes and typos.

jqCouch - CouchDB connection plugin 1.0.4

First release of the library.

Examples

$.jqcouch.db.exists('/some_database');
$.jqcouch.db.create('/some_database');
$.jqcouch.doc.save('/some_database/note1', {
name: 'Test',
title: 'Test title'
});
$.jqcouch.doc.get('/some_database/note1');