- couch-client
- cradle
- noddycouch
- node-couch
- node-couchdb
- node-couchdb-min
couch-client
The documentation seems reasonably rich, and it has all the methods that I'd like to use. My only concern at this point is that it batches up writes. This may not be ideal for my particular use case, but it isn't a show stopper.There are no installation/setup docs, so I assume I've got to clone the github repo to get it.
cradle
I've been impressed with cradle's docs so far, and it's also available throughnpm
, which is a plus. It also distinguishes between creating a document with and without an id, which may be required in my use case.Lastly, cradle mentions an SSL use case, which I think is important. The other libraries may also have SSL support, but they don't explicitly call it out.
3 comments :
I use mikeal's request module, with a 10-line wrapper that keeps a little state (host, port) and does a little json-parsing. You don't need much more.
Thanks, but I didn't see any documentation for it. Do I need any?
My driver is easier to use. You get started in 59 seconds.
https://github.com/siddiq/getsetgo#readme
Post a Comment