commit | 66486edc49171def6c35b786e4375f9d883fd6ff | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Fri Feb 11 20:56:44 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Feb 11 20:56:44 2022 +0000 |
tree | b749e7580e3ff85d3ad939c9e9e41ce7b609ddc7 | |
parent | 532228f9a2b4a9ea12efb91da3eed16523f45bb0 [diff] | |
parent | 8fa918405fb8882942673fbe5069a494b1e49f28 [diff] |
[automerger skipped] Empty merge of sc-v2-dev-plus-aosp-without-vendor@8084891 am: 920c08720e -s ours am: 8fa918405f -s ours am skip reason: Merged-In I858aedceffe03026158158acfed5b52fc5f28547 with SHA-1 fd84518fae is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/grpc-grpc/+/16843592 Change-Id: I372ba4459c84a590bdb6310134fa3b895fcff17f
gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. It enables client and server applications to communicate transparently, and makes it easier to build connected systems.
To maximize usability, gRPC supports the standard way of adding dependencies in your language of choice (if there is one). In most languages, the gRPC runtime comes in form of a package available in your language's package manager.
For instructions on how to use the language-specific gRPC runtime in your project, please refer to these documents
src/cpp
directoryGrpc
grpc
go get google.golang.org/grpc
npm install grpc
gRPC-ProtoRPC
dependency to podspecpecl install grpc
pip install grpcio
gem install grpc
You can find per-language quickstart guides and tutorials in Documentation section on grpc.io website. The code examples are available in the examples directory.
Precompiled bleeding-edge package builds of gRPC master
branch's HEAD
are uploaded daily to packages.grpc.io.
Contributions are welcome!
Please read How to contribute which will guide you through the entire workflow of how to build the source code, how to run the tests and how to contribute your changes to the gRPC codebase. The document also contains info on how the contributing process works and contains best practices for creating contributions.
Sometimes things go wrong. Please check out the Troubleshooting guide if you are experiencing issues with gRPC.
See Performance dashboard for the performance numbers for the latest released version.
See gRPC Concepts
This repository contains source code for gRPC libraries for multiple languages written on top of shared C core library src/core.
Libraries in different languages may be in different states of development. We are seeking contributions for all of these libraries.
Language | Source |
---|---|
Shared C [core library] | src/core |
C++ | src/cpp |
Ruby | src/ruby |
Python | src/python |
PHP | src/php |
C# | src/csharp |
Objective-C | src/objective-c |
Language | Source repo |
---|---|
Java | grpc-java |
Go | grpc-go |
NodeJS | grpc-node |
WebJS | grpc-web |
Dart | grpc-dart |