-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.js
More file actions
36 lines (29 loc) · 840 Bytes
/
client.js
File metadata and controls
36 lines (29 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const protoLoader = require('@grpc/proto-loader')
const grpc = require('@grpc/grpc-js')
const MESSAGE_PROTO = `${__dirname}/message.proto`
const packageDefinition = protoLoader.loadSync(MESSAGE_PROTO, {
keepCase: true,
longs: String,
enums: String,
arrays: true
})
const EmployeeInfoService = grpc.loadPackageDefinition(packageDefinition).EmployeeInfoService
const customConfig = {}
const grpcClient = new EmployeeInfoService(
"localhost:9000",
grpc.credentials.createInsecure(),
customConfig
)
const gRPCReq = {
id: 1,
name: "John Doe",
phone_numbers: [12345678, 98765432],
occupation: "Data Analyst",
is_working_professional: true
}
grpcClient.employeeInfo(gRPCReq, (err, response) => {
if (err) {
console.log(`gRPC Error: ${err}`);
}
console.log(`gRPC Response: ${JSON.stringify(response)}`);
})