Answers for "nodejs grpc"

0

nodejs grpc

//After successfully generating your functions from .proto files for nodejs:

//unsecured
const client = new SomeServiceClient('urlWithoutProtocol', grpc.credentials.createInsecure());

//SSL
const client = new SomeServiceClient('urlWithoutProtocol', grpc.credentials.createSsl());
Posted by: Guest on March-15-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language