Node.js or Go for Hyperledger Fabric's chaincode development?

浪尽此生 提交于 2020-01-03 18:59:09

问题


Which language among Node.js and Go is better suited for 'chaincode' development when it comes to maintainibility, scalability and better support?


回答1:


It's a matter of personal preference, but I'd say Golang, because:

  • Node.js chaincode uses npm install at the time of container building, which is slow and might fail due to network problems, while Golang just compiles the source code without fetching anything.

  • Chaincode features are introduced to Golang chaincode first and then later on to other chaincode implementations.



来源:https://stackoverflow.com/questions/53301415/node-js-or-go-for-hyperledger-fabrics-chaincode-development

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!