A very minimal implementation of grpc client and service in node.js
Install the grpc dependencies,
$ npm install
Start the server,
$ node server.js
GRPC server is running on 50051
On a different terminal window, test the server by invoking the client script.
$ node client.js
{
major: 1,
minor: 2,
micro: 3,
additional: 'additional version info'
}
That's all folks!