lachaise
v0.0.2
Published
Couchbase SDK wrapper
Downloads
1
Readme
LaChaise
Node JS Wrapper For The Couchbase SDK
#install
npm install lachaise
Usage Example
var LaChaise = require('lachaise');
//config declaration omitted for brevity
var lac = new LaChaise(config);
lac.bucket('my_couchbase_bucket', function(err, bucket) {
//do something with the bucket
//like .. bucket.upsert('fake key', {});
});