Hyperledger Fabric: Error: Failed to load gRPC binary module because it was not installed for the current system

Problem I was following this Hyperledger Fabric tutorial: Writing your First Application This tutorial demonstrates a Hyperledger Fabric Sample Application named FabCar. Here’s the github repository of the fabcar sample app: https://github.com/hyperledger/fabric-samples/tree/master/fabcar I went inside the fabric-samples/fabcar directory and I was able to run the startFabric shell script: ./startFabric.sh After that, I tried to enroll … Read more

Node.js: Packaging your Node.js Module/Project

This article shows how you can package your Node.js module or project using npm init command. Running this command will create a package.json file which contains all the necessary packaging information. Here’s a step-by-step guide to create package file with npm init command. 1) Open terminal/command-prompt 2) Go to your Node.js module/project directory. In my … Read more