Skip to content

Instantly share code, notes, and snippets.

@yuriatgoogle
Created April 9, 2018 17:54
Show Gist options
  • Save yuriatgoogle/dce946f4c817b98661f0786132e3cad8 to your computer and use it in GitHub Desktop.
Save yuriatgoogle/dce946f4c817b98661f0786132e3cad8 to your computer and use it in GitHub Desktop.
// make grpc call to grpc server - localhost on port 50051
var client = new hello_proto.Greeter('localhost:50051', grpc.credentials.createInsecure());
var user;
if (process.argv.length >= 3) {
user = process.argv[2];
console.log("user is " + user);
} else {
user = 'world';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment