Non-official Couchbase Node.js Client Library.
npm install @prodisign/couchbaseThe Node.js SDK library allows you to connect to a Couchbase cluster from
Node.js. It is a native Node.js module and uses the very fast libcouchbase
library to handle communicating to the cluster over the Couchbase binary
protocol.
__This library is a partial reimplementation of the official couchnode library__
To install the lastest release using npm, run:
``bash`
npm install couchbase-x
Connecting to a Couchbase bucket is as simple as creating a new Cluster Cluster
instance to represent the you are using, and then using thebucket and collection commands against this to open a connection to
open your specific bucket and collection. You are able to execute most
operations immediately, and they will be queued until the connection is
successfully established.
Here is a simple example of instantiating a connection, adding a new document
into the bucket and then retrieving its contents:
`typescript
import { Cluster } from 'couchbase-x';
const cluster = Cluster.connect('cb://
await cluster.store('test-doc', {
name: 'Frank',
});
const doc = await cluster.get('test-doc');
console.log(doc);
// {name: 'Frank'}
`
An extensive documentation is available on the Couchbase website. Visit our
Node.js Community on
the Couchbase website for the documentation as well as
numerous examples and samples.
The source code is available at
https://github.com/couchbase/couchnode.
Once you have cloned the repository, you may contribute changes through our
gerrit server. For more details see
CONTRIBUTING.md.
To execute our test suite, run make test from the root directory.
To execute our code coverage, run make cover from the root directory.
In addition to the full test suite and full code coverage, you may additionally
execute a subset of the tests which excludes slow-running tests for quick
verifications. These can be run through make fasttest and make fastcover`
respectively.
Source - http://github.com/couchbase/couchnode
Bug Tracker - http://www.couchbase.com/issues/browse/JSCBC
Couchbase Developer Portal - https://docs.couchbase.com/
Release Notes - https://docs.couchbase.com/nodejs-sdk/2.6/relnotes-nodejs-sdk.html
Licensed under the Apache License, Version 2.0.
See
LICENSE
for further details.