From d84e9cede8d49a0e4e5f190a5dac793b03bb0403 Mon Sep 17 00:00:00 2001 From: Dan Ciruli Date: Wed, 25 Feb 2015 12:13:03 -0800 Subject: [PATCH] Update README.md --- node/README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/node/README.md b/node/README.md index f9df3b0..076755a 100644 --- a/node/README.md +++ b/node/README.md @@ -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! -------