https://github.com/hemangnakarani/grpc-basics
Kicking off with golang and gRPC 🤩🥳
https://github.com/hemangnakarani/grpc-basics
golang grpc grpc-go
Last synced: about 1 year ago
JSON representation
Kicking off with golang and gRPC 🤩🥳
- Host: GitHub
- URL: https://github.com/hemangnakarani/grpc-basics
- Owner: HemangNakarani
- Created: 2020-11-27T13:07:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-29T14:28:13.000Z (over 5 years ago)
- Last Synced: 2025-02-08T02:26:29.663Z (about 1 year ago)
- Topics: golang, grpc, grpc-go
- Language: Go
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC-Basics
Kicking off with golang and gRPC 🤩🥳
# TechStack
- Golang, gRPC driver and Protocol Buffers
- MongoDb drivers for Golang
- Evans CLI for testing Go server without writing client code. (It will need to use Reflection API in server code)
# Instructions
- Download golang and set GOPATH in environment
- Get `protoc` compiler from its Repo using ```go get ```
- For Generating code from `.proto` visit `generate.sh` file in repo
- Clone Repo in Local Machine
In one Terminal
```
> cd gRPC-Basics
> go run hemangnakarani\calculator\clac_server\server.go
```
In another Terminal
```
> cd gRPC-Basics
> go run hemangnakarani\calculator\calc_client\client.go
```