UNPKG

@corbinu/couchbase

Version:

The unofficial Couchbase Node.js Client Library.

68 lines (60 loc) 2.12 kB
'use strict'; /** * @module couchbase */ const binding = require('./binding'); exports.Cluster = require('./cluster'); exports.Bucket = require('./bucket'); exports.Scope = require('./scope'); exports.Collection = require('./collection'); exports.DesignDocument = require('./designdocument'); exports.LookupInSpec = require('./lookupinspec'); exports.MutateInSpec = require('./mutateinspec'); exports.SearchQuery = require('./searchquery'); exports.SearchFacet = require('./searchfacet'); exports.SearchSort = require('./searchsort'); exports.PasswordAuthenticator = require('./passwordauthenticator'); exports.CertificateAuthenticator = require('./certificateauthenticator'); // Move all the enums into the package scope var enums = require('./enums'); for (var i in enums) { if (Object.prototype.hasOwnProperty.call(enums, i)) { exports[i] = enums[i]; } } // Move all the errors into the package scope var errors = require('./errors'); for (var j in errors) { if (Object.prototype.hasOwnProperty.call(errors, j)) { exports[j] = errors[j]; } } /** * Creates a new Cluster object for interacting with a Couchbase * cluster and performing operations. * * @param {string} connStr * The connection string of your cluster * @param {Object} [options] * @param {string} [options.username] * The RBAC username to use when connecting to the cluster. * @param {string} [options.password] * The RBAC password to use when connecting to the cluster * @param {string} [options.clientCertificate] * A client certificate to use for authentication with the server. Specifying * this certificate along with any other authentication method (such as username * and password) is an error. * @param {string} [options.certificateChain] * A certificate chain to use for validating the clusters certificates. * @param {ConnectCallback} [callback] * @returns {Promise<Cluster>} */ exports.connect = async function connect() { return await exports.Cluster.connect.apply(null, arguments); }; /** * Expose the LCB version that is in use. * * @type {string} */ exports.lcbVersion = binding.lcbVersion;