gorush/rpc/example/node
Bo-Yi Wu 651a2b76db
fix(grpc): check alert exist. (#324)
* fix(grpc): check alert exist.

* fix: update readme.
2018-01-03 17:08:28 +08:00
..
.gitignore feat(grpc): add node.js example. (#260) 2017-07-25 22:33:06 +08:00
README.md feat(grpc): add node.js example. (#260) 2017-07-25 22:33:06 +08:00
client.js fix(grpc): check alert exist. (#324) 2018-01-03 17:08:28 +08:00
gorush_grpc_pb.js feat(grpc): support category, alert and badge for ios. (#321) 2018-01-02 15:53:15 +08:00
gorush_pb.js fix(grpc): check alert exist. (#324) 2018-01-03 17:08:28 +08:00
package.json feat(grpc): add node.js example. (#260) 2017-07-25 22:33:06 +08:00
yarn.lock feat(grpc): add node.js example. (#260) 2017-07-25 22:33:06 +08:00

README.md

gRPC in 3 minutes (Node.js)

PREREQUISITES

node: This requires Node 0.12.x or greater.

INSTALL

$ yarn 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`