@projectriff/function-proto

0.0.6 • Public • Published

gRPC Node.js

Create node module wrapping function.proto

npm install --save @projectriff/function-proto

const { FunctionInvokerService, FunctionInvokerClient } = require('@projectriff/function-proto');
const grpc = require('grpc');
const address = '127.0.0.1:50051';

// server
const server = new grpc.Server();
server.addService(FunctionInvokerService, {
    call(call) {
        // TODO implement service
    }
});
server.bind(address, grpc.ServerCredentials.createInsecure());
server.start();

// client
const client = new FunctionInvokerClient(address, grpc.credentials.createInsecure());

See the official gRPC for Node.js reference guide.

Versions

Current Tags

Version History

Package Sidebar

Install

npm i @projectriff/function-proto

Weekly Downloads

9

Version

0.0.6

License

Apache-2.0

Unpacked Size

3.52 kB

Total Files

5

Last publish

Collaborators

  • scothis
  • jldec