Skip to content

Commit e33fb74

Browse files
committed
[FAB-7976]add Node.js CC interface links
Added a link to the Node.js shim document https://fabric-shim.github.io/ where Node.js chaincode is used. This will help application developers to understand the APIs and sample chaincodes. Change-Id: I237abc376412dab195a357e314ce8a3e29b35c98 Signed-off-by: Min Luo <luomin_tokyotech@hotmail.com>
1 parent 86aed91 commit e33fb74

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/source/build_network.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Next, you can bring the network up with one of the following commands:
149149
150150
The above command will compile Golang chaincode images and spin up the corresponding
151151
containers. Go is the default chaincode language, however there is also support
152-
for Node.js chaincode. If you'd like to run through this tutorial with node
152+
for `Node.js <https://fabric-shim.github.io/>`__ chaincode. If you'd like to run through this tutorial with node
153153
chaincode, pass the following command instead:
154154

155155
.. code:: bash

docs/source/dev-setup/build.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@ To run a specific test use the ``-run RE`` flag where RE is a regular
3333
expression that matches the test case name. To run tests with verbose
3434
output use the ``-v`` flag. For example, to run the ``TestGetFoo`` test
3535
case, change to the directory containing the ``foo_test.go`` and
36-
call/excecute
36+
call/execute
3737

3838
::
3939

4040
go test -v -run=TestGetFoo
4141

4242

4343

44-
Running Node.js Unit Tests
45-
~~~~~~~~~~~~~~~~~~~~~~~~~~
44+
Running Node.js Client SDK Unit Tests
45+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4646

47-
You must also run the Node.js unit tests to insure that the Node.js
47+
You must also run the Node.js unit tests to ensure that the Node.js
4848
client SDK is not broken by your changes. To run the Node.js unit tests,
4949
follow the instructions
5050
`here <https://github.com/hyperledger/fabric-sdk-node/blob/master/README.md>`__.

docs/source/write_first_app.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ chaincode written in Golang:
107107
./startFabric.sh
108108
109109
You also have the option of running this tutorial against chaincode written in
110-
Node.js. If you'd like to pursue this route, issue the following command instead:
110+
`Node.js <https://fabric-shim.github.io/>`__. If you'd like to pursue this route, issue the following command instead:
111111

112112
.. code:: bash
113113

0 commit comments

Comments
 (0)