npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

couchapi

v0.0.3

Published

Promise based wrapper for jquery.couch.js

Downloads

4

Readme

A simple vows based wrapper for jquery.couch.js.

Works both in the browser and on nodejs.

In the browser copy the following files from the lib directory to your script directory, and add the appropriate script tags to your html file:

jquery.js
vow.js
jquery.couch.js
couchapi.js

You will have a global named couchapi (and VOW as well);

On nodejs

npm install couchapi

or npm install git://github.com/michieljoris/couchapi.git

will fetch the nodejs versions of jquery and vow. The module can be required with:

var couchapi = require('couchapi);
	

The promises implementation is the one from Douglas Crockford. Simple and sufficient.

It is mirroring almost all functionality of the jquery javascript adapter that comes with futon, but the functions are returning vows instead of expecting success and error callbacks passed in.

I added a few more utility functions mainly to easily configure and modify security objects and design documents.

One addition is an implementation of

1. GET docid?conflicts=true
2. For each member in the _conflicts array:
 GET docid?rev=xxx
If any errors occur at this stage, restart from step 1.
(There could be a race where someone else has already resolved this
conflict and deleted that rev)
3. Perform application-specific merging
4. Write _bulk_docs with an update to the first rev and deletes of
the other revs.

as described in http://wiki.apache.org/couchdb/Replication_and_conflicts

The application-specific merging can be done by passing in a resolver or before calling a returned continuing function.

The bulkSave operation is not atomic, unlike the ruby example implementation. Not quite sure yet whether that is a good thing or not. http://localhost:5984/_utils/docs/api/database.html?highlight=bulk#post-db-bulk-docs

A good doc for the original jquery.couch.js version is http://bradley-holt.com/2011/07/couchdb-jquery-plugin-reference/ and http://daleharvey.github.io/jquery.couch.js-docs/symbols/index.html

I've modified it slightly so it can be run in the browser as will as on nodejs


An idea is to adapt it so it can be used with pouchdb as well, just by setting a parameter.

If you have an app that mainly talks to CouchDB it is nice to have a light weight adapter in the combination of couchapi and jquery.couch.js.

But if you want to add functionality for using the browser's internal indexedb you just add pouchdb.js to your site and set the parameter on couchapi, withouth changing any code of your app.