/grpc-node-example

Node.jsでgRPCを利用するサンプルリポジトリ

Primary LanguageJavaScript

grpc-node-example

Node.jsでgRPCを利用するサンプルリポジトリ

bidirectional

Bidirectional Streaming RPCを利用したリアルタイムチャットアプリです。

src

setup

$ cd bidirectional/

$ npm ci
$ npm run protoc # コミット済
$ npm run build

server

スクリーンショット 2022-02-14 16 30 12

$ npm run start-server

client

スクリーンショット 2022-02-14 16 27 20

$ npm run start-client (name)

unary

Unary RPCを利用したシンプルな計算アプリです。

src

setup

$ cd unary/

$ npm ci
$ npm run protoc # コミット済
$ npm run build

server

$ npm run start-server

client

$ npm run client:add 3 7

3 + 7 = 10