-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
45 lines (37 loc) · 1.14 KB
/
Copy pathserver.js
File metadata and controls
45 lines (37 loc) · 1.14 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
37
38
39
40
41
42
43
44
45
const grpc = require("@grpc/grpc-js");
const protoLoader = require("@grpc/proto-loader");
const packageDef = protoLoader.loadSync("todo.proto", {});
const grpcObject = grpc.loadPackageDefinition(packageDef);
const todoPackage = grpcObject.todoPackage;
const server = new grpc.Server();
//communication between services will be plaintext | use createSsl
server.bindAsync("0.0.0.0:40000", grpc.ServerCredentials.createInsecure(), errorFunction);
server.addService(todoPackage.Todo.service,
{
"createTodo": createTodo,
"readTodos": readTodos,
"readTodosStream": readTodosStream
});
const todos = [];
function createTodo(call, callback) {
const todoItem = {
"id": todos.length + 1,
"text": call.request.text
}
todos.push(todoItem);
callback(null, todoItem);
}
function readTodos(call, callback) {
callback(null, {"items": todos})
}
function readTodosStream(call, callback) {
todos.forEach(item => call.write(item));
call.end();
}
function errorFunction(err, port) {
if (err) {
console.error(`Server error: ${err.message}`);
} else {
console.log(`Server bound on port: ${port}`);
}
}