Merge pull request #93 from murgatroid99/node_readme_fix

Made some minor corrections to the Node README
This commit is contained in:
Tim Emiola 2015-02-25 16:52:20 -08:00
commit 6bfdd52084
1 changed files with 10 additions and 10 deletions

View File

@ -15,14 +15,14 @@ INSTALL
$ git clone https://github.com/grpc/grpc-common.git
```
- Follow the instructions in [INSTALL](https://github.com/grpc/grpc/blob/master/INSTALL) to install the gRPC C core.
- Install
- Install this package's dependencies
```sh
$ cd grpc-common/node
$ npm install
# If node is not found, you'll need to clone the grpc repository (if you haven't already)
# If grpc is not found, you'll need to install it from the grpc repository
$ git clone https://github.com/grpc/grpc.git
$ npm install ~/grpc/src/node
$ npm install path/to/grpc/src/node
```
@ -32,15 +32,15 @@ Try it!
- Run the server
```sh
$ # from this directory
$ nodejs ./greeter_server.js &
$ # from this directory (grpc_common/node).
$ node ./greeter_server.js &
```
- Run the client
```sh
$ # from this directory
$ nodejs ./greeter_client.js
$ node ./greeter_client.js
```
Note