gorush/rpc/example/node
Snyk bot 754e50d482
[Snyk] Upgrade google-protobuf from 3.20.0 to 3.20.1 (#680)
Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2022-06-30 21:42:48 +08:00
..
.gitignore feat(grpc): add node.js example. (#260) 2017-07-25 22:33:06 +08:00
README.md chore: replace yarn with npm (#434) 2019-10-27 12:13:40 +08:00
client.js feat(grcp): support MutableContent for ios (#332) 2018-01-16 11:26:45 +08:00
gorush_grpc_pb.js chore: replace yarn with npm (#434) 2019-10-27 12:13:40 +08:00
gorush_pb.js fix #560: fix proto file and Makefile to generate pb (go, js) (#636) 2021-10-25 09:34:46 +08:00
package-lock.json [Snyk] Upgrade google-protobuf from 3.20.0 to 3.20.1 (#680) 2022-06-30 21:42:48 +08:00
package.json [Snyk] Upgrade google-protobuf from 3.20.0 to 3.20.1 (#680) 2022-06-30 21:42:48 +08:00

README.md

gRPC in 3 minutes (Node.js)

PREREQUISITES

node: This requires Node 12.x or greater.

INSTALL

npm install
npm install -g grpc-tools

Node gRPC protoc

cd $GOPATH/src/github.com/appleboy/gorush
protoc -I rpc/proto rpc/proto/gorush.proto --js_out=import_style=commonjs,binary:rpc/example/node/ --grpc_out=rpc/example/node/ --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin`