Tools, FAQ, Tutorials:
Install Node.js Application Dependencies
What is Install Node.js Application Dependencies?
✍: FYIcenter.com
Since the applications are written with Hyperledger Fabric Node.js SDK
Isabella needs to install some dependencies, which are listed
in the package.json file.
(isabella)$ cd ~/hyperledger-binaries/fabric-samples (isabella)$ cd commercial-paper/organization/magnetocorp/application (isabella)$ npm install ... added 320 packages from 230 contributors in 140.614s npm ERR! Callback called more than once. (isabella)$ ls -l node_modules/ | more drwxrwxr-x 4 fyicenter 4096 Apr 21 17:03 @babel drwxrwxr-x 5 fyicenter 4096 Apr 21 17:03 @types drwxrwxr-x 4 fyicenter 4096 Apr 21 17:03 acorn drwxrwxr-x 2 fyicenter 4096 Apr 21 17:03 acorn-jsx drwxrwxr-x 5 fyicenter 4096 Apr 21 17:03 ajv drwxrwxr-x 2 fyicenter 4096 Apr 21 17:03 ansi-escapes ...
If you see access error, and "node_modules" sub-directory is not created, you can have a npm versioning problem. Try to use the following command to fix it.
(isabella)$ nvm use --delete-prefix v11.14.0 (isabella)$ node -v v11.14.0 (isabella)$ npm -v 6.7.0
Â
⇒ Prepare User Identity for Isabella
⇠Client Application Gateway
⇑ commercial-paper Sample Network
⇑⇑ Hyperledger Tutorials
2019-12-02, 835👍, 0💬
Popular Posts:
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...