|
|
||
|---|---|---|
| .. | ||
| route_guide | ||
| .gitignore | ||
| README.md | ||
| greeter_client.js | ||
| greeter_server.js | ||
| helloworld.proto | ||
| package.json | ||
README.md
gRPC in 3 minutes (Node.js)
PREREQUISITES
This requires Node 10.x or greater.
INSTALL
- Clone this repository
- Follow the instructions in INSTALL to install the gRPC C core.
- Run
npm installto install dependencies- If
grpcis not found, clone the gRPC repository and runnpm install path/to/grpc/src/node.
- If
Try it!
-
Run the server
$ # from this directory $ nodejs ./greeter_server.js & -
Run the client
$ # from this directory $ nodejs ./greeter_client.js
Note
This directory has a copy of helloworld.proto because it currently depends on
some Protocol Buffer 2.0 syntax that is deprecated in Protocol Buffer 3.0.