Simple gRPC client on NodeJS v1.4.0
Now are supported packages which have dots or style of inverse DNS like: com.github.nodegrpcclient
.
runService('TaskName', dataToSend, callback);
listMethods();
The dynamic methods are the methods of the GRPC, then, its depends of your definition on your proto file.
- Example dynamic async (using callbacks) method:
task1Async(data, callback);
. - Example dynamic sync (using promises) method:
await task2Sync(data);
. - Example dynamic stream method:
task3Stream(data).on('data', callback);
syntax = "proto3";
package packageservice;
message ExampleRequest {
string id = 1;
string text = 2;
}
message ExampleResponse {
int32 send = 1;
string message = 2;
}
service Theservice {
rpc Task1 (ExampleRequest) returns (ExampleResponse);
rpc Task2 (ExampleRequest) returns (ExampleResponse);
}
Where
- The name of the package is packageservice.
- The name of the service is Theservice.
- The name of the methods are Task1 and Task2.
const GRPCClient = require('node-grpc-client');
const myClient = new GRPCClient(<protoPath>, <packageName>, <serviceName>, <url>);
const path = require('path');
const PROTO_PATH = path.resolve(__dirname, '../example.proto');
const GRPCClient = require('node-grpc-client');
const myClient = new GRPCClient(PROTO_PATH, 'packageservice', 'Theservice', 'localhost:3000');
const dataToSend = {
id: 'abc123',
text: 'Hello world'
};
myClient.runService('Task1', dataToSend, (err, res) => {
console.log('Service response ', res);
});
const path = require('path');
const PROTO_PATH = path.resolve(__dirname, '../example.proto');
const GRPCClient = require('node-grpc-client');
const myClient = new GRPCClient(PROTO_PATH, 'packageservice', 'Theservice', 'localhost:3000');
const dataToSend = {
id: 'abc123',
text: 'Hello world'
};
myClient.task1Async(dataToSend, (err, res) => {
console.log('Service response ', res);
});
const path = require('path');
const PROTO_PATH = path.resolve(__dirname, '../example.proto');
const GRPCClient = require('node-grpc-client');
const myClient = new GRPCClient(PROTO_PATH, 'packageservice', 'Theservice', 'localhost:3000');
const dataToSend = {
id: 'abc123',
text: 'Hello world'
};
(async function () {
const response1 = await myClient.task1Sync(dataToSend);
console.log('The answer of request 1: ', response1);
const response2 = await myClient.task2Sync(dataToSend);
console.log('The answer of request 2: ', response2);
})();
Some gRPC methods return a stream. This allows subscription-based push communication between the server and the client, where the server can push data to the client.
You can use the dynamic stream method for this. For example, if the server has a gRPC method Task3 that returns a stream:
const stream = myClient.task3Stream(dataToSend);
stream.on('data', (data) => console.log(data));
- zetogk [email protected] - GitHub profile
- netsaj [email protected] - GitHub profile
- jwulf GitHub profile