{"id":18367970,"url":"https://github.com/devignesh/go-grpc","last_synced_at":"2025-04-10T17:54:53.548Z","repository":{"id":127546804,"uuid":"322373332","full_name":"devignesh/go-gRPC","owner":"devignesh","description":"Goalng gRPC practise ","archived":false,"fork":false,"pushed_at":"2021-01-07T04:36:41.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-08T12:44:08.024Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/devignesh.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":"2020-12-17T18:01:13.000Z","updated_at":"2024-06-19T07:41:31.907Z","dependencies_parsed_at":"2023-05-23T07:00:29.123Z","dependency_job_id":null,"html_url":"https://github.com/devignesh/go-gRPC","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devignesh%2Fgo-gRPC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devignesh%2Fgo-gRPC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devignesh%2Fgo-gRPC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devignesh%2Fgo-gRPC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devignesh","download_url":"https://codeload.github.com/devignesh/go-gRPC/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248262438,"owners_count":21074308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-05T23:24:06.994Z","updated_at":"2025-04-10T17:54:53.527Z","avatar_url":"https://github.com/devignesh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-gRPC\nGoalng gRPC practise examples.\n\n\n# gRPC \nIn gRPC, a client application can directly call a method on a server application on a different machine as if it were a local object, making it easier for you to create distributed applications and services. As in many RPC systems, gRPC is based around the idea of defining a service, specifying the methods that can be called remotely with their parameters and return types. On the server side, the server implements this interface and runs a gRPC server to handle client calls. On the client side, the client has a stub (referred to as just a client in some languages) that provides the same methods as the server.\n\n# service method:\n    Unary RPCs :\n        rpc SayHello(HelloRequest) returns (HelloResponse);\n    Server streaming RPCs:\n        rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse);\n    Client streaming RPCs:\n        rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse);\n    Bidirectional streaming RPCs:\n        rpc BidiHello(stream HelloRequest) returns (stream HelloResponse);\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevignesh%2Fgo-grpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevignesh%2Fgo-grpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevignesh%2Fgo-grpc/lists"}