https://github.com/hakobe/grpc-guruguru
Trial for grpc using some types of languages
https://github.com/hakobe/grpc-guruguru
Last synced: about 1 year ago
JSON representation
Trial for grpc using some types of languages
- Host: GitHub
- URL: https://github.com/hakobe/grpc-guruguru
- Owner: hakobe
- License: mit
- Created: 2018-03-25T23:54:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-01T14:27:31.000Z (over 8 years ago)
- Last Synced: 2025-02-17T05:46:16.486Z (over 1 year ago)
- Language: JavaScript
- Size: 235 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gRPC guruguru
This is a useless gRPC server/client process model. This project is for my gRPC training.
First, a boss process waits for member processes joining. Once all members joined the boss forms cyclic linked list of members by setting next process to each members.
Each member accepts poke messages. When a member receives a poke message, then the member sends a new poke message to its next member process. That means that poke messages loop around the members list infinitely.

Member processes are written by each language. These are based on the same proto file as you can see. Used languages are below:
- Go
- Python
- JavaScript(Node.js)
- Ruby
- ...
## How to try
```console
$ make build # for first
$ make up
```
## License
MIT by @hakobe