Tools, FAQ, Tutorials:
Start Hyperledger Composer Playground Server
How to start and stop Hyperledger Composer Playground Server?
✍: FYIcenter.com
The command that represents the Hyperledger Composer Playground Server
is "composer-playground". You can start the server as shown below:
$ composer-playground
... INFO :LoadModule :loadModule() Loading composer-wallet-filesystem from
/usr/local/lib/node_modules/composer-playground/node_modules
/composer-wallet-filesystem {}$
... INFO :PlaygroundAPI :createServer() Playground API started on port 8080 {}$
Note that the above command starts the server as a foreground job, which blocks your command window. You can terminate the server by pressing "Ctrl-C".
^C $
To voiding blocking the command window, you can start the server as a background job:
$ composer-playground & [1] 6527 $
To terminate the server running in the background as a background job:
$ jobs [1]+ Running composer-playground & $ kill %1 $ jobs $
Â
⇒ Connect to Local Playground Server
⇠What is Hyperledger Composer Playground Server
2022-10-13, ∼1799🔥, 1💬
Popular Posts:
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...