Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvinchengx/gochat
chat implementation with protocol buffers and gRPC
https://github.com/calvinchengx/gochat
golang grpc-go protocol-buffers
Last synced: 10 days ago
JSON representation
chat implementation with protocol buffers and gRPC
- Host: GitHub
- URL: https://github.com/calvinchengx/gochat
- Owner: calvinchengx
- Created: 2018-10-21T04:49:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T13:34:34.000Z (over 6 years ago)
- Last Synced: 2024-12-06T09:26:23.282Z (2 months ago)
- Topics: golang, grpc-go, protocol-buffers
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![CircleCI](https://circleci.com/gh/calvinchengx/gochat/tree/master.svg?style=shield)](https://circleci.com/gh/calvinchengx/gochat/tree/master)
golang chat with protocol buffers and gRPC
===```bash
# server
go run server/main.go# client - golang
go run client/go/main.go# client - javascript/web
# TODO: add javascript/web usage instructions
```dependencies for generating protobuf for web js
===```bash
mkdir -p ~/opensource && cd ~/opensource
git clone https://github.com/grpc/grpc-web
cd grpc-web
sudo make install-plugin
# this will install protoc-gen-grpc-web binary in our /usr/local/bin
```