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());
Wide-eyed Fox