Merge pull request #78 from grpc/oaktowner-patch-4

Update README.md
This commit is contained in:
Michael Lumish 2015-02-25 14:49:33 -08:00
commit 20579e97eb
1 changed files with 14 additions and 2 deletions

View File

@ -10,9 +10,21 @@ INSTALL
-------
- Clone this repository
```sh
$ 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.
- Run `npm install` to install dependencies
- If `grpc` is not found, clone the [gRPC](https://github.com/grpc/grpc) repository and run `npm install path/to/grpc/src/node`.
- Install
```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)
$ git clone https://github.com/grpc/grpc.git
$ npm install ~/grpc/src/node
```
Try it!
-------