• Home
Name Date Size #Lines LOC

..--

bazel/12-May-2024-2,7002,242

cmake/12-May-2024-602545

doc/12-May-2024-6,6284,927

etc/12-May-2024-4,6504,510

examples/12-May-2024-34,27826,726

include/12-May-2024-35,86817,954

src/12-May-2024-515,007376,511

summerofcode/12-May-2024-295224

templates/12-May-2024-13,26410,811

test/12-May-2024-176,040136,295

third_party/12-May-2024-61,58746,653

tools/12-May-2024-142,110124,553

.gitattributesD12-May-2024631 1615

AUTHORSD12-May-202464 54

BUILDD12-May-202498.3 KiB2,8672,732

BUILD.gnD12-May-202484.2 KiB1,5831,569

BUILDING.mdD12-May-20249.9 KiB271205

CMakeLists.txtD12-May-2024450 KiB15,58213,843

CODE-OF-CONDUCT.mdD12-May-2024138 42

CONCEPTS.mdD12-May-20243.5 KiB6445

CONTRIBUTING.mdD12-May-20247.2 KiB135103

GOVERNANCE.mdD12-May-2024141 21

GemfileD12-May-202489 53

LICENSED12-May-202411.1 KiB203169

MAINTAINERS.mdD12-May-20244.4 KiB8580

MANIFEST.mdD12-May-2024430 2418

MakefileD12-May-20241 MiB20,01613,065

NOTICE.txtD12-May-2024554 1410

OAT.xmlD12-May-202414.4 KiB13987

OWNERSD12-May-202484 64

PYTHON-MANIFEST.inD12-May-2024867 2625

README.OpenSourceD12-May-2024318 1010

README.mdD12-May-20244.6 KiB8864

RakefileD12-May-20246 KiB171151

TROUBLESHOOTING.mdD12-May-20242 KiB4431

WORKSPACED12-May-20242.3 KiB7859

build_autogenerated.yamlD12-May-2024216.1 KiB7,6397,638

build_config.rbD12-May-2024654 183

build_handwritten.yamlD12-May-20248.1 KiB269268

bundle.jsonD12-May-2024757 3030

composer.jsonD12-May-2024541 2423

config.m4D12-May-202460.6 KiB1,0271,018

config.w32D12-May-202473.2 KiB1,0761,071

gRPC-C++.podspecD12-May-202482.1 KiB1,1851,159

gRPC-Core.podspecD12-May-2024119.8 KiB1,7081,682

gRPC-ProtoRPC.podspecD12-May-20243.1 KiB8974

gRPC-RxLibrary.podspecD12-May-20242.2 KiB7158

gRPC.podspecD12-May-20248.1 KiB185155

grpc.bzlD12-May-20243.7 KiB114100

grpc.defD12-May-20248.4 KiB274273

grpc.gypD12-May-202496.2 KiB1,9311,926

libgrpc.mapD12-May-20248.9 KiB196194

libgrpcxx.mapD12-May-20241.4 KiB2726

requirements.bazel.txtD12-May-2024292 1716

requirements.txtD12-May-2024130 87

setup.pyD12-May-202416.5 KiB429309

README.OpenSource

1[
2  {
3    "Name": "gRPC",
4    "License": "Apache License V2.0",
5    "License File": "LICENSE",
6    "Version Number": "1.36.1",
7    "Upstream URL": "https://grpc.io",
8    "Description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment."
9  }
10]

README.md

1gRPC - An RPC library and framework
2===================================
3
4gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. gRPC enables client and server applications to communicate transparently, and simplifies the building of connected systems.
5
6<table>
7  <tr>
8    <td><b>Homepage:</b></td>
9    <td><a href="https://grpc.io/">grpc.io</a></td>
10  </tr>
11  <tr>
12    <td><b>Mailing List:</b></td>
13    <td><a href="https://groups.google.com/forum/#!forum/grpc-io">grpc-io@googlegroups.com</a></td>
14  </tr>
15</table>
16
17[![Join the chat at https://gitter.im/grpc/grpc](https://badges.gitter.im/grpc/grpc.svg)](https://gitter.im/grpc/grpc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
18
19# To start using gRPC
20
21To maximize usability, gRPC supports the standard method for adding dependencies to a user's chosen language (if there is one).
22In most languages, the gRPC runtime comes as a package available in a user's language package manager.
23
24For instructions on how to use the language-specific gRPC runtime for a project, please refer to these documents
25
26 * [C++](src/cpp): follow the instructions under the `src/cpp` directory
27 * [C#](src/csharp): NuGet package `Grpc`
28 * [Dart](https://github.com/grpc/grpc-dart): pub package `grpc`
29 * [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
30 * [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central Repository
31 * [Kotlin](https://github.com/grpc/grpc-kotlin): Use JARs from Maven Central Repository
32 * [Node](https://github.com/grpc/grpc-node): `npm install grpc`
33 * [Objective-C](src/objective-c): Add `gRPC-ProtoRPC` dependency to podspec
34 * [PHP](src/php): `pecl install grpc`
35 * [Python](src/python/grpcio): `pip install grpcio`
36 * [Ruby](src/ruby): `gem install grpc`
37 * [WebJS](https://github.com/grpc/grpc-web): follow the grpc-web instructions
38
39Per-language quickstart guides and tutorials can be found in the [documentation section on the grpc.io website](https://grpc.io/docs/). Code examples are available in the [examples](examples) directory.
40
41Precompiled bleeding-edge package builds of gRPC `master` branch's `HEAD` are uploaded daily to [packages.grpc.io](https://packages.grpc.io).
42
43# To start developing gRPC
44
45Contributions are welcome!
46
47Please read [How to contribute](CONTRIBUTING.md) which will guide you through the entire workflow of how to build the source code, how to run the tests, and how to contribute changes to
48the gRPC codebase.
49The "How to contribute" document also contains info on how the contribution process works and contains best practices for creating contributions.
50
51# Troubleshooting
52
53Sometimes things go wrong. Please check out the [Troubleshooting guide](TROUBLESHOOTING.md) if you are experiencing issues with gRPC.
54
55# Performance
56
57See the [Performance dashboard](https://performance-dot-grpc-testing.appspot.com/explore?dashboard=5652536396611584) for performance numbers of master branch daily builds.
58
59# Concepts
60
61See [gRPC Concepts](CONCEPTS.md)
62
63# About This Repository
64
65This repository contains source code for gRPC libraries implemented in multiple languages written on top of a shared C core library [src/core](src/core).
66
67Libraries in different languages may be in various states of development. We are seeking contributions for all of these libraries:
68
69| Language                | Source                              |
70|-------------------------|-------------------------------------|
71| Shared C [core library] | [src/core](src/core)                |
72| C++                     | [src/cpp](src/cpp)                  |
73| Ruby                    | [src/ruby](src/ruby)                |
74| Python                  | [src/python](src/python)            |
75| PHP                     | [src/php](src/php)                  |
76| C# (core library based) | [src/csharp](src/csharp)            |
77| Objective-C             | [src/objective-c](src/objective-c)  |
78
79| Language                | Source repo                                          |
80|-------------------------|------------------------------------------------------|
81| Java                    | [grpc-java](https://github.com/grpc/grpc-java)       |
82| Kotlin                  | [grpc-kotlin](https://github.com/grpc/grpc-kotlin)   |
83| Go                      | [grpc-go](https://github.com/grpc/grpc-go)           |
84| NodeJS                  | [grpc-node](https://github.com/grpc/grpc-node)       |
85| WebJS                   | [grpc-web](https://github.com/grpc/grpc-web)         |
86| Dart                    | [grpc-dart](https://github.com/grpc/grpc-dart)       |
87| .NET (pure C# impl.)    | [grpc-dotnet](https://github.com/grpc/grpc-dotnet)   |
88