The Hyperledger Fabric SDK for Node.js provides a powerful API to interact with a Hyperledger Fabric blockchain. The SDK is designed to be used in the Node.js JavaScript runtime.

Note: This API is deprecated as of Fabric v2.5, replaced by the Fabric Gateway client API.

Overview

Hyperledger Fabric is the operating system of an enterprise-strength permissioned blockchain network. For a high-level overview of the fabric, visit http://hyperledger-fabric.readthedocs.io/en/latest/.

Applications can be developed to interact with the blockchain network on behalf of the users. APIs are available to:

  • invoke transactions by calling the chaincode.
  • receive events based on new blocks added to the ledger.

How different components of Hyperledger Fabric work together

The Transaction Flow document provides an excellent description of the application/SDK, peers, and orderers working together to process transactions and produce blocks.

Security is enforced with digital signatures. All requests must be signed by users with appropriate enrollment certificates. For a user's enrollment certificate to be considered valid, it must be signed by a trusted Certificate Authority (CA). Fabric supports any standard CAs. In addition, Fabric provides a CA server. See this overview.

Features of the SDK for Node.js

The Hyperledger Fabric SDK for Node.js is designed in an Object-Oriented programming style. Its modular construction enables application developers to plug in alternative implementations for handling transaction commit events, transaction evaluation (query), and other behaviors.

The SDK is composed of several modules:

  • fabric-network: Provides high level APIs for client applications to interact with smart contracts (chaincode), and is the recommended API for building client applications.
  • fabric-ca-client: Provides APIs to interact with the optional Certificate Authority component, fabric-ca, that contains services for membership management.
  • fabric-common: A low-level API, used to implement fabric-network capability, that provides APIs to interact with the core components of a Hyperledger Fabric network, namely the peers, orderers and event streams.

Compatibility

The following tables show versions of Fabric, Node and other dependencies that are explicitly tested and that are supported for use with version 2.x of the Fabric SDK for Node.

Tested Supported
Fabric 2.2 2.2
Node 14, 16, 18, 20 14 LTS, 16 LTS, 18 LTS, 20 LTS
Platform Ubuntu 22.04

API reference

This section provides more detail on the capabilities provided by each of the modules that make up the Hyperledger Fabric SDK for Node.js.

fabric-network

This is the recommended API for client application to use for:

fabric-ca-client

Provides the following capabilities for interacting with the Certificate Authority to manage user identities:

fabric-common

Provides the following capabilities and for use in the implementation of the fabric-network API:

  • Submitting transactions.
  • querying chaincode for the latest application state.
  • monitoring events:
    • connect to a peer's event stream
    • listen on block events
    • listen on transactions events and find out if the transaction was successfully committed to the ledger or marked invalid.
    • listen on custom events produced by chaincodes.
  • hierarchical configuration settings with multiple layers of overrides: files, environment variable, program arguments, in-memory settings
  • logging utility with a built-in logger (winston) and can be overridden with a number of popular loggers including log4js and bunyan
  • pluggable interface describe the cryptographic operations required for successful interactions with the Fabric. Two implementations are provided out of box:

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.