Node Quick Start
This guide gets you started with gRPC in Node with a simple working example.
Prerequisites
- Node version 4.0.0 or higher
Download the example
You’ll need a local copy of the example code to work through this quick start.Download the example code from our GitHub repository (the following commandclones the entire repository, but you just need the examples for this quick startand other tutorials):
# Clone the repository to get the example code
$ git clone -b v1.28.1 https://github.com/grpc/grpc
# Navigate to the dynamic codegen "hello, world" Node example:
$ cd grpc/examples/node/dynamic_codegen
# Install the example's dependencies
$ npm install
Run a gRPC application
From the examples/node/dynamic_codegen
directory:
- Run the server:
$ node greeter_server.js
- From another terminal, run the client:
$ node greeter_client.js
Congratulations! You’ve just run a client-server application with gRPC.
Update a gRPC service
Now let’s look at how to update the application with an extra method on theserver for the client to call. Our gRPC service is defined using protocolbuffers; you can find out lots more about how to define a service in a .proto
file ingRPC Basics: Node. For now all you needto know is that both the server and the client “stub” have a SayHello
RPCmethod that takes a HelloRequest
parameter from the client and returns aHelloReply
from the server, and that this method is defined like this:
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}
Let’s update this so that the Greeter
service has two methods. Editexamples/protos/helloworld.proto
and update it with a new SayHelloAgain
method, with the same request and response types:
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
// Sends another greeting
rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}
Remember to save the file!
Update and run the application
We now have a new service definition, but we still need to implement and callthe new method in the human-written parts of our example application.
Update the server
In the same directory, open greeter_server.js
. Implement the new method likethis:
function sayHello(call, callback) {
callback(null, {message: 'Hello ' + call.request.name});
}
function sayHelloAgain(call, callback) {
callback(null, {message: 'Hello again, ' + call.request.name});
}
function main() {
var server = new grpc.Server();
server.addService(hello_proto.Greeter.service,
{sayHello: sayHello, sayHelloAgain: sayHelloAgain});
server.bind('0.0.0.0:50051', grpc.ServerCredentials.createInsecure());
server.start();
}
Update the client
In the same directory, open greeter_client.js
. Call the new method like this:
function main() {
var client = new hello_proto.Greeter('localhost:50051',
grpc.credentials.createInsecure());
client.sayHello({name: 'you'}, function(err, response) {
console.log('Greeting:', response.message);
});
client.sayHelloAgain({name: 'you'}, function(err, response) {
console.log('Greeting:', response.message);
});
}
Run!
Just like we did before, from the examples/node/dynamic_codegen
directory:
- Run the server:
$ node greeter_server.js
- From another terminal, run the client:
$ node greeter_client.js
What’s next
- Read a full explanation of how gRPC works inWhat is gRPC?andgRPC Concepts.
- Work through a more detailed tutorial ingRPC Basics: Node.
- Explore the gRPC Node core API in itsreferencedocumentation.
- We do have more than one grpc implementation for nodejs.Learn about the pros and cons of each here.