couchnode

Couchbase Node.js Client Library (Official)

Github星跟踪图

Couchbase Node.js Client

The 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.

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

Installing

To install the lastest release using npm, run:

npm install couchbase

To install the development version directly from github, run:

npm install "git+https://github.com/couchbase/couchnode.git#master"

Introduction

Connecting to a Couchbase bucket is as simple as creating a new Cluster
instance to represent the Cluster you are using, and then using the
bucket 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:

var couchbase = require('couchbase');
var cluster = new couchbase.Cluster('couchbase://127.0.0.1', {
  username: 'username',
  password: 'password',
});
var bucket = cluster.bucket('default');
var coll = bucket.defaultCollection();

coll.upsert('testdoc', {name:'Frank'}, (err, res) => {
  if (err) throw err;

  coll.get('testdoc', (err, res) => {
    if (err) throw err;

    console.log(res.value);
    // {name: Frank}
  });
});

Documentation

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.

Source Control

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.

License

Copyright 2013 Couchbase Inc.

Licensed under the Apache License, Version 2.0.

See
LICENSE
for further details.

主要指标

概览
名称与所有者couchbase/couchnode
主编程语言TypeScript
编程语言Makefile (语言数: 6)
平台
许可证Apache License 2.0
所有者活动
创建于2012-08-10 16:42:53
推送于2025-05-05 16:44:47
最后一次提交2025-04-21 18:00:40
发布数121
最新版本名称v4.4.5 (发布于 2025-01-28 20:57:09)
第一版名称0.0.12 (发布于 2013-04-23 15:00:58)
用户参与
星数461
关注者数53
派生数228
提交数1.2k
已启用问题?
问题数8
打开的问题数5
拉请求数0
打开的拉请求数0
关闭的拉请求数122
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?