Options
All
  • Public
  • Public/Protected
  • All
Menu

@ibm-cloud/cloudant - v0.0.13

Build Status Release Docs

IBM Cloudant Node.js SDK Version 0.0.13

IBM Cloudant Node.js SDK is a client library that interacts with the IBM Cloudant APIs.

Disclaimer: This SDK is being released initially as a pre-release version. Changes might occur which impact applications that use this SDK.

Table of Contents

Overview

The IBM Cloudant Node.js SDK allows developers to programmatically interact with IBM Cloudant with the help of the @ibm-cloud/cloudant package.

Features

The purpose of this Node.js SDK is to wrap most of the HTTP request APIs provided by Cloudant and supply other functions to ease the usage of Cloudant. This SDK should make life easier for programmers to do what’s really important to them: developing software.

Reasons why you should consider using Cloudant Node.js SDK in your project:

  • Supported by IBM Cloudant.
  • Server compatibility with:
  • Includes all the most popular and latest supported endpoints for applications.
  • Handles the authentication.
  • Familiar user experience with IBM Cloud SDKs.
  • Flexibility to use either built-in models or byte-based requests and responses for documents.
  • Promise based design with asynchronous HTTP requests.
  • Use either as native JavaScript or take advantage of TypeScript models.
  • Transparently compresses request and response bodies.

Prerequisites

  • A Cloudant service instance or a CouchDB server.
  • Node.js 10, 12, 14: This SDK is tested with Node.js versions 10, 12, and 14. It may work on other versions but those are not officially supported.

Installation

npm install @ibm-cloud/cloudant

Authentication

This library requires some of your Cloudant service credentials to authenticate with your account.

  1. IAM, COUCHDB_SESSION, BASIC or NOAUTH authentication type.
    1. IAM authentication is highly recommended when your back-end database server is Cloudant. This authentication type requires a server-generated apikey instead of a user-given password. You can create one here.
    2. Session cookie (COUCHDB_SESSION) authentication is recommended for Apache CouchDB or for Cloudant when IAM is unavailable. It exchanges username and password credentials for an AuthSession cookie from the /_session endpoint.
    3. Basic (or legacy) authentication is a fallback for both Cloudant and Apache CouchDB back-end database servers. This authentication type requires the good old username and password credentials.
    4. Noauth authentication does not require credentials. Note that this authentication type only works with queries against a database with read access for everyone.
  2. The service url.

There are several ways to set these properties:

  1. As environment variables
  2. The programmatic approach
  3. With an external credentials file

Authentication with environment variables

IAM authentication

For Cloudant IAM authentication, set the following environmental variables by replacing the <url> and <apikey> with your proper service credentials. There is no need to set CLOUDANT_AUTH_TYPE to IAM because it is the default.

CLOUDANT_URL=<url>
CLOUDANT_APIKEY=<apikey>

Session cookie authentication

For COUCHDB_SESSION authentication, set the following environmental variables by replacing the <url>, <username> and <password> with your proper service credentials.

CLOUDANT_AUTH_TYPE=COUCHDB_SESSION
CLOUDANT_URL=<url>
CLOUDANT_USERNAME=<username>
CLOUDANT_PASSWORD=<password>

Basic authentication

For Basic authentication, set the following environmental variables by replacing the <url>, <username> and <password> with your proper service credentials.

CLOUDANT_AUTH_TYPE=BASIC
CLOUDANT_URL=<url>
CLOUDANT_USERNAME=<username>
CLOUDANT_PASSWORD=<password>

Note: We recommend that you use IAM for Cloudant and Session for CouchDB authentication.

Authentication with external configuration

To use an external configuration file, the Cloudant API docs, or the general SDK usage information will guide you.

Programmatic authentication

To learn more about how to use programmatic authentication, see the related documentation in the Cloudant API docs or in the Node.js SDK Core document about authentication.

Using the SDK

For general IBM Cloud SDK usage information, please see IBM Cloud SDK Common.

Code examples

The following code examples authenticate with the environment variables.

1. Retrieve information from an existing database

Note: This example code assumes that animaldb database does not exist in your account.

This example code gathers information about an existing database hosted on the https://examples.cloudant.com/ service url. To connect, you must extend your environment variables with the service url and authentication type to use NOAUTH authentication while you connect to the animaldb database. This step is necessary for the SDK to distinguish the EXAMPLES custom service name from the default service name which is CLOUDANT.

Cloudant environment variable naming starts with a service name prefix that identifies your service. By default this is CLOUDANT, see the settings in the authentication with environment variables section.

If you would like to rename your Cloudant service from CLOUDANT, you must use your defined service name as the prefix for all Cloudant related environment variables. The code block below provides an example of instantiating a user-defined EXAMPLES service name.

EXAMPLES_URL=https://examples.cloudant.com
EXAMPLES_AUTH_TYPE=NOAUTH

Once the environment variables are set, you can try out the code examples.

TypeScript:
import {CloudantV1} from "@ibm-cloud/cloudant";
// 1. Create a Cloudant client with "EXAMPLES" service name ===================
const client =
    CloudantV1.newInstance({serviceName:"EXAMPLES"});

// 2. Get server information ==================================================
// call service without parameters:
client.getServerInformation()
    .then(serverInformation => {
        const version = serverInformation.result.version;
        console.log(`Server version ${version}`);
    });

// 3. Get database information for "animaldb" =================================
const dbName = "animaldb";

// call service with embedded parameters:
client.getDatabaseInformation({db: dbName})
    .then(dbInfo => {
        const documentCount = dbInfo.result.doc_count;
        const dbNameResult = dbInfo.result.db_name;

        // 4. Show document count in database =================================
        console.log(`Document count in "${dbNameResult}" database is ` +
            documentCount + ".");
    });

// 5. Get zebra document out of the database by document id ===================
const getDocParams:
    CloudantV1.GetDocumentParams = {db: dbName, docId: "zebra"};

// call service with predefined parameters:
client.getDocument(getDocParams)
    .then(documentAboutZebra => {
        // result object is defined as a Document here:
        const result: CloudantV1.Document = documentAboutZebra.result;
        console.log("Document retrieved from database:\n" +
            JSON.stringify(result, null, 2));
    });
JavaScript:
const { CloudantV1 } = require('@ibm-cloud/cloudant');

embedmd:# (test/examples/src/js/GetInfoFromExistingDatabase.js /const getInfoFromExistingDatabase/ /getInfoFromExistingDatabase();\n}/)

const getInfoFromExistingDatabase = async () => {
  // 1. Create a Cloudant client with "EXAMPLES" service name ===================
  const client = CloudantV1.newInstance({ serviceName: 'EXAMPLES' });

  // 2. Get server information ==================================================
  // call service without parameters:
  const version = (await client.getServerInformation()).result.version;
  console.log(`Server version ${version}`);

  // 3. Get database information for "animaldb" =================================
  const dbName = 'animaldb';

  // call service with embedded parameters:
  const dbInfo = await client.getDatabaseInformation({ db: dbName });
  const documentCount = dbInfo.result.doc_count;
  const dbNameResult = dbInfo.result.db_name;

  // 4. Show document count in database =================================
  console.log(`Document count in "${dbNameResult}" database is ` + documentCount + '.');

  // 5. Get zebra document out of the database by document id ===================
  const getDocParams = { db: dbName, docId: 'zebra' };

  // call service with predefined parameters:
  const documentAboutZebra = await client.getDocument(getDocParams);

  // result object is defined as a Document here:
  const result = documentAboutZebra.result;

  console.log('Document retrieved from database:\n' + JSON.stringify(result, null, 2));
};

if (require.main === module) {
  getInfoFromExistingDatabase();
}

When you run the code, you see a result similar to the following output.

Server version 2.1.1
Document count in "animaldb" database is 11.
Document retrieved from database:
{
  "_id": "zebra",
  "_rev": "3-750dac460a6cc41e6999f8943b8e603e",
  "wiki_page": "http://en.wikipedia.org/wiki/Plains_zebra",
  "min_length": 2,
  "max_length": 2.5,
  "min_weight": 175,
  "max_weight": 387,
  "class": "mammal",
  "diet": "herbivore"
}

2. Create your own database and add a document

Note: This example code assumes that orders database does not exist in your account.

Now comes the exciting part, you create your own orders database and add a document about Bob Smith with your own IAM or Basic service credentials.

Create code example
TypeScript:
import {CloudantV1} from "@ibm-cloud/cloudant";
interface OrderDocument extends CloudantV1.Document {
    name?: string;
    joined?: string;
    _id: string;
    _rev?: string;
}

// 1. Create a client with `CLOUDANT` default service name ================
const client = CloudantV1.newInstance({});

// 2. Create a database =======================================================
const exampleDbName = "orders";

// Try to create database if it doesn't exist
const createDb = client.putDatabase({db: exampleDbName})
    .then(putDatabaseResult => {
        if (putDatabaseResult.result.ok) {
            console.log(`"${exampleDbName}" database created."`);
        }
    })
    .catch(err => {
        if (err.code === 412){
            console.log("Cannot create \"" + exampleDbName +
                "\" database, it already exists.");
        }
    });

// 3. Create a document =======================================================
// Create a document object with "example" id
const exampleDocId = "example";

// set required _id property on exampleDocument:
const exampleDocument: OrderDocument = {_id: exampleDocId};

// Add "name" and "joined" fields to the document
exampleDocument.name = "Bob Smith";
exampleDocument.joined = "2019-01-24T10:42:99.000Z";

// Save the document in the database
createDb.then(() => {
    client.postDocument({
        db: exampleDbName,
        document: exampleDocument
    }).then(createDocumentResponse => {
        // Keep track with the revision number of the document object
        exampleDocument._rev = createDocumentResponse.result.rev;
        console.log("You have created the document:\n" +
            JSON.stringify(exampleDocument, null, 2));
    });
});
JavaScript:
const { CloudantV1 } = require('@ibm-cloud/cloudant');

embedmd:# (test/examples/src/js/CreateDbAndDoc.js /const createDbAndDoc/ /createDbAndDoc();\n}/)

const createDbAndDoc = async () => {
  // 1. Create a client with `CLOUDANT` default service name ================
  const client = CloudantV1.newInstance({});

  // 2. Create a database =======================================================
  const exampleDbName = 'orders';

  // Try to create database if it doesn't exist
  try {
    const putDatabaseResult = (
      await client.putDatabase({
        db: exampleDbName,
      })
    ).result;
    if (putDatabaseResult.ok) {
      console.log(`"${exampleDbName}" database created.`);
    }
  } catch (err) {
    if (err.code === 412) {
      console.log('Cannot create "' + exampleDbName + '" database, it already exists.');
    }
  }

  // 3. Create a document =======================================================
  // Create a document object with "example" id
  const exampleDocId = 'example';

  const exampleDocument = { _id: exampleDocId };

  // Add "name" and "joined" fields to the document
  exampleDocument['name'] = 'Bob Smith';
  exampleDocument.joined = '2019-01-24T10:42:99.000Z';

  // Save the document in the database
  const createDocumentResponse = await client.postDocument({
    db: exampleDbName,
    document: exampleDocument,
  });

  // Keep track with the revision number of the document object
  exampleDocument._rev = createDocumentResponse.result.rev;
  console.log('You have created the document:\n' + JSON.stringify(exampleDocument, null, 2));
};

if (require.main === module) {
  createDbAndDoc();
}
When you run the code, you see a result similar to the following output.
"orders" database created.
You have created the document:
{
  "_id": "example",
  "name": "Bob Smith",
  "joined": "2019-01-24T10:42:99.000Z",
  "_rev": "1-1b403633540686aa32d013fda9041a5d"
}

3. Update your previously created document

Note: This example code assumes that you have created both the orders database and the example document by running the previous example code successfully. Otherwise, the following error message occurs, "Cannot update document because either 'orders' database or 'example' document was not found."

Update code example
TypeScript:
import {CloudantV1} from "@ibm-cloud/cloudant";
interface OrderDocument extends CloudantV1.Document {
    address?: string;
    joined?: string;
    _id?: string;
    _rev?: string;
}

// 1. Create a client with `CLOUDANT` default service name ================
const client = CloudantV1.newInstance({});
// 2. Update the document =====================================================
// Set the options to get the document out of the database if it exists
const exampleDbName = "orders";

// Try to get the document if it previously existed in the database
const getDocParams: CloudantV1.GetDocumentParams =
    {docId: "example", db: exampleDbName};

client.getDocument(getDocParams)
    .then(docResult => {
        // using OrderDocument on getDocument result:
        const document: OrderDocument = docResult.result;

        // Add Bob Smith's address to the document
        document.address = "19 Front Street, Darlington, DL5 1TY";

        // Remove the joined property from document object
        delete document.joined;

        // Update the document in the database
        client.postDocument({db: exampleDbName, document})
            .then(res => {
                // Keeping track with the revision number of the document object:
                document._rev = res.result.rev;
                console.log("You have updated the document:\n" +
                    JSON.stringify(document, null, 2));
            });
    })
    .catch(err => {
        if (err.code === 404) {
            console.log(
                "Cannot update document because either \"" +
                exampleDbName + "\" database or the \"example\" " +
                "document was not found."
            );
        }
    });
JavaScript:
const { CloudantV1 } = require('@ibm-cloud/cloudant');

embedmd:# (test/examples/src/js/UpdateDoc.js /const updateDoc/ /updateDoc();\n}/)

const updateDoc = async () => {
  // 1. Create a client with `CLOUDANT` default service name ================
  const client = CloudantV1.newInstance({});
  // 2. Update the document =====================================================
  // Set the options to get the document out of the database if it exists
  const exampleDbName = 'orders';

  // Try to get the document if it previously existed in the database
  try {
    const document = (
      await client.getDocument({
        docId: 'example',
        db: exampleDbName,
      })
    ).result;

    // Add Bob Smith's address to the document
    document.address = '19 Front Street, Darlington, DL5 1TY';

    // Remove the joined property from document object
    delete document['joined'];

    // Keeping track with the revision number of the document object:
    document._rev = (
      await client.postDocument({
        db: exampleDbName,
        document: document,
      })
    ).result.rev;

    console.log('You have updated the document:\n' + JSON.stringify(document, null, 2));
  } catch (err) {
    if (err.code === 404) {
      console.log(
        'Cannot update document because either "' +
          exampleDbName +
          '" database or the "example" ' +
          'document was not found.'
      );
    }
  }
};

if (require.main === module) {
  updateDoc();
}
When you run the code, you see a result similar to the following output.
You have updated the document:
{
  "_id": "example",
  "_rev": "2-4e2178e85cffb32d38ba4e451f6ca376",
  "name": "Bob Smith",
  "address": "19 Front Street, Darlington, DL5 1TY"
}

4. Delete your previously created document

Note: This example code assumes that you have created both the orders database and the example document by running the previous example code successfully. Otherwise, the following error message occurs, "Cannot delete document because either 'orders' database or 'example' document was not found."

Delete code example
TypeScript:
import {CloudantV1} from "@ibm-cloud/cloudant";
interface OrderDocument extends CloudantV1.Document {
    name?: string;
    address?: string;
    joined?: string;
    _id?: string;
    _rev?: string;
}

// 1. Create a client with `CLOUDANT` default service name ================
const client = CloudantV1.newInstance({});

// 2. Delete the document =============================================
// Set the options to get the document out of the database if it exists
const exampleDbName = "orders";
const exampleDocId = "example";

// Try to get the document if it previously existed in the database
const getDocParams: CloudantV1.GetDocumentParams =
    {docId: exampleDocId, db: exampleDbName};

client.getDocument(getDocParams)
    .then(docResult => {
        const document: OrderDocument = docResult.result;

        client.deleteDocument({
            db: exampleDbName,
            docId: document._id,
            rev: document._rev}).then(() => {
                console.log("You have deleted the document.");
        });
    })
    .catch(err => {
        if (err.code === 404) {
            console.log(
                "Cannot delete document because either \"" +
                exampleDbName + "\" database or the \"example\" " +
                "document was not found."
            );
        }
    });
JavaScript:
const { CloudantV1 } = require('@ibm-cloud/cloudant');

embedmd:# (test/examples/src/js/DeleteDoc.js /const deleteDoc/ /deleteDoc();\n}/)

const deleteDoc = async () => {
  // 1. Create a client with `CLOUDANT` default service name ================
  const client = CloudantV1.newInstance({});

  // 2. Delete the document =============================================
  // Set the options to get the document out of the database if it exists
  const exampleDbName = 'orders';
  const exampleDocId = 'example';

  // Try to get the document if it previously existed in the database
  try {
    const document = (
      await client.getDocument({
        docId: exampleDocId,
        db: exampleDbName,
      })
    ).result;

    await client.deleteDocument({
      db: exampleDbName,
      docId: document._id,
      rev: document._rev,
    });
    console.log('You have deleted the document.');
  } catch (err) {
    if (err.code === 404) {
      console.log(
        'Cannot delete document because either "' +
          exampleDbName +
          '" database or the "example" ' +
          'document was not found.'
      );
    }
  }
};

if (require.main === module) {
  deleteDoc();
}
When you run the code, you see the following output.
You have deleted the document.

Error handling

For sample code on handling errors, see Cloudant API docs.

Raw IO

For endpoints that read or write document content it is possible to bypass usage of the built-in models and send or receive a bytes response. For examples of using byte streams, see the API reference documentation ("Example request as a stream" section).

Further resources

Questions

If you are having difficulties using this SDK or have a question about the IBM Cloud services, ask a question on Stack Overflow.

Issues

If you encounter an issue with the project, you are welcome to submit a bug report. Before you submit a bug report, search for similar issues. It's possible that your issue has already been reported.

Open source at IBM

Find more open source projects on the IBM Github page.

Contributing

For more information, see CONTRIBUTING.

License

This SDK is released under the Apache 2.0 license. To read the full text of the license, see LICENSE.

Generated using TypeDoc