palik
palik

Reputation: 2853

Is there any alternative to hyperledger-composer?

As mentioned in the issue the Hyperledger Composer project is in deprecated status since 29th August 2019.

I'll ask consequently, if there exist an alternative?

Upvotes: 1

Views: 2720

Answers (3)

Dexter
Dexter

Reputation: 4275

The simple answer is- There is no more a direct alternative Hyperledger Composer as of now.

Hyperledger Composer was being used to create applications (smart contracts)/PoCs quickly on top of Hyperledger core framework providing a set of easy to use APIs.

Developer now have to build applications with their preferred languages (Java/ Go / Node.js ) directly calling the Hyperledger APIs.

Upvotes: 1

Narendranath Reddy
Narendranath Reddy

Reputation: 4133

Under Hyperledger umbrella, we have many projects and tools

hyperledger composer is a tool and hyperledger fabric is a project

hyperledger composer could be used for demo purposes.

So coming to your question: it's not about alternative it's about what available

since the composer is deprecated you can go with a traditional way of creating smart contracts and install it to the peers and go on.

As of now, smart contracts can be developed in the following available languages

  • golang
  • NodeJS
  • java

This is what @david_k is trying to convey

Upvotes: 5

david_k
david_k

Reputation: 5868

Hyperledger Composer recommended using the new programming models that are now available in Hyperledger Fabric. These programming models are not only available for Node.js but Java as well and the intention is to bring them to Go Lang in the future.

Upvotes: 1

Related Questions