Blockchain Node.js SDK/Module
Node client library to use the IBM Cloud Blockchain Service.
This module will allow you to use native js functions to leverage the same functionality seen in the IBP APIs
Table of Contents
Overview
The IBM Cloud Blockchain Node SDK allows developers to programmatically interact with the
IBM Cloud Blockchain service.
This repository is generated from an OpenAPI file that describes all available APIs.
It is recommended to read through the IBP API docs to see the list of capabilities.
Any issues with this SDK can be opened here or against the IBM Blockchain Platform service through IBM Cloud support.
Prerequisites
- An IBM Cloud account.
- An IBM Blockchain Platform Service instance
- An IAM API key to allow the SDK to access your service instance. Create an account level api key here (alternatively you can create a service instance level api key from the IBM cloud UI).
- An installation of Node (version 12 or above) on your local machine.
Installation
Use this command to download and install the Blockchain Node SDK project.
Once this is done your Node application will be able to use it:
npm i ibp-node-sdk
Explore the SDK
This module is generated from an OpenAPI (swagger) file.
The same file populated our IBP APIs documentation.
To find desired functionality start by browsing the IBP APIs documentation.
Then find the corresponding node example to the right of the api documentation.
Alternatively you could manually browse the SDK's main file:
Using the SDK
This section provides general information on how to use the services contained in this SDK.
Constructing service clients
Start by requiring the IBP Node SDK and then creating a client
.
Here's an example of how to construct an instance:
const ibp = require('ibp-node-sdk');
const authenticator = new ibp.IamAuthenticator({
apikey: '{API-Key}',
});
const client = ibp.BlockchainV3.newInstance({
authenticator: authenticator,
url: 'https://{API-Endpoint}',
});
Authentication
Blockchain services use token-based Identity and Access Management (IAM) authentication.
IAM authentication uses an API key to obtain an access token, which is then used to authenticate
each API request. Access tokens are valid for a limited amount of time and must be regenerated.
To provide credentials to the SDK, you supply either an IAM service API key or an access token:
- Specify the IAM API key to have the SDK manage the lifecycle of the access token.
The SDK requests an access token, ensures that the access token is valid, and refreshes it when
necessary.
- Specify the access token if you want to manage the lifecycle yourself.
For details, see Authenticating with IAM tokens.
Examples:
- Supplying the IAM API key and letting the SDK manage the access token for you:
const ibp = require('ibp-node-sdk');
const authenticator = new ibp.IamAuthenticator({
apikey: '{API-Key}',
});
const client = ibp.BlockchainV3.newInstance({
authenticator: authenticator,
url: 'https://{API-Endpoint}',
});
- Supplying the access token (a bearer token) and managing it yourself:
const ibp = require('ibp-node-sdk');
const authenticator = new ibp.IamAuthenticator({
bearertoken: '{my IAM access token}',
});
const client = ibp.BlockchainV3.newInstance({
authenticator: authenticator,
url: 'https://{API-Endpoint}',
});
...
authenticator.bearertoken =
For more information on authentication, including the full set of authentication schemes supported by
the underlying Node Core library, see
this page.
Receiving operation responses
Each service method (operation) will return the following values:
response.result
- An operation-specific result (if the operation is defined as returning a result).response.status
- the HTTP status code returned in the response messageresponse.headers
- the HTTP headers returned in the response message
Example:
- Here's an example of calling the
GetComponent
operation:
const authenticator = new ibp.IamAuthenticator({
apikey: '{API-Key}',
});
const client = ibp.BlockchainV3.newInstance({
authenticator: authenticator,
url: 'https://{API-Endpoint}',
});
try {
const response = await client.getComponent({ id: '{Component-ID}' });
console.log('status code:', resp.status);
console.log('response headers:', resp.headers);
console.log('response:', resp.result);
} catch (e) {
console.error('status code:', e.status);
console.error('response headers:', e.headers);
console.error('response:', e.body);
}
Error Handling
The SDK will do its bests to inspect the input for correctness (before sending the API).
In the case of a bad input (such as a missing required field) it will throw an error.
- The service method (the sdk operation) will throw an error
e
. This error can be parsed/read with e.toString()
.
In the case of an error response from the server endpoint, the Blockchain Node SDK will do the following:
- The service method (the sdk operation) will throw an error
e
. This e
object will
contain the error message retrieved from the HTTP response if possible, or a generic error message
otherwise. - The
e.body
field will contain the HTTP response as a string. - The
e.status
field will contain the HTTP response code as a number.
Generation
This is a note for developers of this repository on how to rebuild the SDK.
- download the latest sdk generator release (should see the java file
lib/openapi-sdkgen.jar
) - clone/download the IBP OpenAPI file
- build command w/o shell:
cd code/openapi-sdkgen
java -jar C:/code/openapi-sdkgen/lib/openapi-sdkgen-3.19.0.jar generate -g ibm-node --additional-properties initialize=true -i C:/code/cloud-api-docs/ibp.yaml -o C:/code/openapi-sdkgen/node_build --apiref C:/code/cloud-api-docs/apiref-node.json && cp -r C:/code/openapi-sdkgen/node_build/blockchain C:/code/ibp-node-sdk && cp -r C:/code/openapi-sdkgen/node_build/test C:/code/ibp-node-sdk
// inspect the output files in make a PR to this repo if they look okay
License
The IBM Cloud Blockchain Node SDK is released under the Apache 2.0 license. The license's full text can be found in LICENSE.