Difference between hyperledger composer and hyperledger fabric?

前端 未结 8 2065
刺人心
刺人心 2020-12-13 13:22

I am java developer and new to hyperledger. I am interested in learning it and need to know where to start . fabric vs composer?

相关标签:
8条回答
  • 2020-12-13 13:39

    To develop production ready application Composer is not the best option since it lacks from a full set of features that are available using 'native' go based smart contract. Also be aware that Composer needs to be baked up by running fabric based blockchain network, otherwise it is useless. Composer operations that are managed using Web UI are not written in any blockchain but in memory instead.

    Those are the main differences between Composer and Fabric, so definetively Composer is a great tool to build mockups, make PoC, etc

    0 讨论(0)
  • 2020-12-13 13:54

    Hyperledger Composer simplifies application development on top of the Hyperledger Fabric blockchain infrastructure.

    If you are interested in the blockchain infrastructure, start with the Fabric tutorials.

    If you are interested in blockchain applications, start with the Composer tutorials.

    The Fabric tutorials also include samples of low level chaincode development (in golang). Composer is a higher level application development framework.

    I'd suggest trying both to get an overall view of the capabilities.

    As a Java developer, you will also want to check out the Fabric Java SDK for building Java client applications that interact with the blockchain. Java chaincode is also available as of Fabric v1.3.

    0 讨论(0)
  • 2020-12-13 13:57

    It helps you to start if you know that hyperledger fabric is a framework and hyperledger composer is a tool for building blockchain business networks. Composer provides a GUI user interface "Playground" for the creation of applications, and therefore represents an excellent starting point for Proof of Concept work.

    0 讨论(0)
  • 2020-12-13 13:57

    As of the 29th August 2019, the Hyperledger Composer project is in deprecated status. You can still use it, but thinking for the future it is better to start with fabric docs. And now the fabric tutorials are much improved.

    0 讨论(0)
  • 2020-12-13 13:57

    Hyperedger Fabric: Hyperledger Fabric is one of a Hyperledger framework. It is a private permissioned blockchain commonly used in building Enterprise application.

    Hyperledger Composer: It is the one of the tool of Hyperledger Framework. The main purpose of this tool is to develop the Blockchain application in less time as compared to Hyperledger Fabric Framework.

    Below are the main differences between these two:

    • Developing the Blockchain application with the help of Hyperledger composer is much easier and faster.
    • The chaincode in Hyperledger Composer can be only written in javascript
    • Hyperledger composer is build on top of the Hyperledger Fabric network by utilizing its main components through connection files.
    • -
    0 讨论(0)
  • 2020-12-13 13:58

    Hyperledger composer is just a framework to deploy business networks on hyperledger Fabric Blockchain. You can even deploy applications on Fabric(using chaincodes written in Golang or Node) itself but composer just simplifies the process. In composer you have Participants in your network, Assets and then you define the transactions that you want to perform. You can look into composer tutorials https://hyperledger.github.io/composer/latest/tutorials/tutorials.html

    0 讨论(0)
提交回复
热议问题