-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
36 lines (33 loc) · 1.08 KB
/
server.js
File metadata and controls
36 lines (33 loc) · 1.08 KB
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 grpc = require("grpc");
const protoLoader = require("@grpc/proto-loader");
const packageDefinition = protoLoader.loadSync("todo.proto", {});
const grpcObject = grpc.loadPackageDefinition(packageDefinition);
const todoPackage = grpcObject.todoPackage;
const server = new grpc.Server();
server.bind("localhost:4000", grpc.ServerCredentials.createInsecure());
// add a service
server.addService(todoPackage.Todo.service, {
"createTodo" : createTodo,
"readTodos" : readTodos,
"readTodosStream" : readTodosStream
});
server.start();
// gRPC methods always take two params
// call = request, callback = response
let todos = [];
function createTodo(call, callback){
console.log(call)
let newItem = {
"id" : todos.length + 1,
"text" : call.request.text
}
todos.push(newItem);
callback(null, newItem);
}
function readTodos(call, callback) {
callback(null, {"items": todos})
}
function readTodosStream(call, callback) {
todos.forEach(t => call.write(t)); // write is used for buffer stream
call.end(); // a buffer stream should be ended
}