{"id":23324397,"url":"https://github.com/skrevolve/go-grpc-api-gateway-microservice","last_synced_at":"2026-04-30T10:05:35.404Z","repository":{"id":163344932,"uuid":"629270086","full_name":"skrevolve/go-grpc-api-gateway-microservice","owner":"skrevolve","description":"gRPC with Gin framework","archived":false,"fork":false,"pushed_at":"2023-06-27T00:39:39.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T06:14:02.324Z","etag":null,"topics":["gin-gonic","go-grpc","golang","microservice"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skrevolve.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-18T01:26:11.000Z","updated_at":"2023-06-15T07:30:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"23aa62b8-6426-429a-9546-ea29dd99a60f","html_url":"https://github.com/skrevolve/go-grpc-api-gateway-microservice","commit_stats":null,"previous_names":["skrevolve/go-grpc-api-gateway-microservice","skrevolve/grpc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/skrevolve/go-grpc-api-gateway-microservice","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skrevolve%2Fgo-grpc-api-gateway-microservice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skrevolve%2Fgo-grpc-api-gateway-microservice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skrevolve%2Fgo-grpc-api-gateway-microservice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skrevolve%2Fgo-grpc-api-gateway-microservice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skrevolve","download_url":"https://codeload.github.com/skrevolve/go-grpc-api-gateway-microservice/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skrevolve%2Fgo-grpc-api-gateway-microservice/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32460807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gin-gonic","go-grpc","golang","microservice"],"created_at":"2024-12-20T18:14:17.354Z","updated_at":"2026-04-30T10:05:35.388Z","avatar_url":"https://github.com/skrevolve.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-grpc-api-gateway-microservice\n\n## Configuration Description\n\n1. API Gateway\n    - [**api-gateway**](https://github.com/skrevolve/go-grpc-api-gateway-microservice/tree/master/api-gateway)\n\n2. gRPC Service\n    - [**auth-svc**](https://github.com/skrevolve/go-grpc-api-gateway-microservice/tree/master/auth-svc)\n    - [**product-svc**](https://github.com/skrevolve/go-grpc-api-gateway-microservice/tree/master/product-svc)\n    - [**order-svc**](https://github.com/skrevolve/go-grpc-api-gateway-microservice/tree/master/order-svc)\n\n\u003c!-- https://grpc-ecosystem.github.io/grpc-gateway/ --\u003e\n\n## Installing Protobuffer\n\n### Linux (Ubuntu)\n\n```sh\nsudo apt install -y protobuf-compiler\n```\n\n### MacOS\n\n```sh\nbrew install protobuff\n```\n\n### Windows\n\n[**Releases Protocl Buffers v2x.x list**](https://github.com/protocolbuffers/protobuf/releases)\n\n```sh\n\u003e protoc-2x.x-win32.zip\n\u003e protoc-2x.x-win64.zip\n```\n\n## GRPC and Protobuffer package dependencies\n\n```sh\ngo get google.golang.org/protobuf/cmd/protoc-gen-go\ngo get google.golang.org/grpc/cmd/protoc-gen-go-grpc\ngo get google.golang.org/grpc\n```\n\n## Make Resource\n\n```sql\ncreate database auth_svc;\ncreate database order_svc;\ncreate database product_svc;\n```\n\n## 🐞Issues\n\n### 1. [plugins are not supported : grpc #1070](https://github.com/golang/protobuf/issues/1070)\n\n```sh\nprotoc protoc/route_guide.proto --go_out=plugins=grpc:.\nERR : --go_out: protoc-gen-go: plugins are not supported; use 'protoc --go-grpc_out=...' to generate gRPC\n```\n\n### 2. [Could not import Golang package : VScode](https://stackoverflow.com/questions/58518588/vscode-could-not-import-golang-package)\n\nUse [**go work**](https://go.dev/doc/tutorial/workspaces) in project root\n\n```sh\ncd go-grpc-api-gateway-microservice\ngo work init\ngo work use ./api-gateway ./auth-svc ./order-svc ./product-svc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskrevolve%2Fgo-grpc-api-gateway-microservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskrevolve%2Fgo-grpc-api-gateway-microservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskrevolve%2Fgo-grpc-api-gateway-microservice/lists"}