fabric sdk node 中的 fabric-client 和 fabric-ca-client 库

版权声明: https://blog.csdn.net/xiruanliuwei/article/details/86664358

https://github.com/hyperledger/fabric-sdk-node

用fabric sdk node编写客户端app时,用到 require('fabric-client'), require('fabric-ca-client')等库,

但是这些库在哪生成的呢?

fabric-sdk-node/fabric-client/package.json

{

  "name": "fabric-client",

  "version": "1.3.0",

  "tag": "latest",

  "main": "index.js",

  "scripts": {

    "test": "nyc mocha --recursive -t 10000"

  },

# vim fabric-sdk-node/fabric-ca-client/package.json

{

  "name": "fabric-ca-client",

  "version": "1.3.0",

  "tag": "latest",

  "main": "index.js",

  "scripts": {

    "test": "nyc mocha --recursive -t 10000"

  },

生成 fabric-client 和 fabric-ca-client两个库

猜你喜欢

转载自blog.csdn.net/xiruanliuwei/article/details/86664358