• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.bazelci/23-Nov-2023-2411

.github/23-Nov-2023-252126

bazel/23-Nov-2023-3,1072,518

cmake/23-Nov-2023-620562

include/23-Nov-2023-27,51213,353

spm-core-include/grpc/23-Nov-2023-6,5122,561

spm-cpp-include/grpcpp/23-Nov-2023-18,65110,468

src/23-Nov-2023-252,684186,497

summerofcode/23-Nov-2023-295224

test/23-Nov-2023-14,16610,923

third_party/23-Nov-2023-418,546298,721

tools/23-Nov-2023-76,29457,010

.bazelignoreD23-Nov-2023268 1716

.bazelrcD23-Nov-2023142 43

.clang-formatD23-Nov-2023177 1211

.clang-tidyD23-Nov-20231.4 KiB4544

.editorconfigD23-Nov-2023113 87

.gitallowedD23-Nov-202365 32

.gitignoreD23-Nov-20231.9 KiB160126

.gitmodulesD23-Nov-20231.8 KiB4948

.istanbul.ymlD23-Nov-2023135 76

.pylintrcD23-Nov-20233.7 KiB9888

.pylintrc-examplesD23-Nov-20233.8 KiB10191

.pylintrc-testsD23-Nov-20234.5 KiB127115

.rspecD23-Nov-202395 76

.travis.ymlD23-Nov-20232.6 KiB7063

.yapfignoreD23-Nov-2023416 3630

.yardoptsD23-Nov-202316 11

AUTHORSD23-Nov-202364 54

BUILDD23-Nov-2023120.4 KiB3,3623,211

BUILD.gnD23-Nov-202387.9 KiB1,5721,542

BUILDING.mdD23-Nov-20239.6 KiB264199

CMakeLists.txtD23-Nov-2023476.8 KiB16,36114,538

CODE-OF-CONDUCT.mdD23-Nov-2023138 42

CONCEPTS.mdD23-Nov-20233.5 KiB6445

CONTRIBUTING.mdD23-Nov-20237.2 KiB135103

GOVERNANCE.mdD23-Nov-2023141 21

GemfileD23-Nov-202389 53

LICENSED23-Nov-202311.1 KiB203169

MAINTAINERS.mdD23-Nov-20234.4 KiB8580

MANIFEST.mdD23-Nov-2023430 2418

NOTICE.txtD23-Nov-2023554 1410

PYTHON-MANIFEST.inD23-Nov-2023867 2625

Package.swiftD23-Nov-20234 KiB125119

README.mdD23-Nov-20234.6 KiB8864

RakefileD23-Nov-20236 KiB173153

TROUBLESHOOTING.mdD23-Nov-20232 KiB4431

WORKSPACED23-Nov-20233.3 KiB9677

build_autogenerated.yamlD23-Nov-2023229.3 KiB8,0258,024

build_config.rbD23-Nov-2023654 183

build_handwritten.yamlD23-Nov-20238.1 KiB267266

composer.jsonD23-Nov-2023541 2423

config.m4D23-Nov-202374.4 KiB1,2121,203

config.w32D23-Nov-202393.6 KiB1,3081,303

gRPC-C++.podspecD23-Nov-2023105.9 KiB1,4311,405

gRPC-Core.podspecD23-Nov-2023156.3 KiB2,1012,075

gRPC-ProtoRPC.podspecD23-Nov-20233.1 KiB8974

gRPC-RxLibrary.podspecD23-Nov-20232.2 KiB7158

gRPC.podspecD23-Nov-20238.1 KiB185155

grpc.bzlD23-Nov-20233.7 KiB114100

grpc.defD23-Nov-20238.8 KiB284283

grpc.gemspecD23-Nov-2023146.6 KiB2,0832,075

grpc.gypD23-Nov-2023102.8 KiB2,0282,023

package.xmlD23-Nov-2023209.3 KiB2,3412,340

requirements.bazel.txtD23-Nov-2023292 1716

requirements.txtD23-Nov-2023116 76

setup.cfgD23-Nov-2023879 3627

setup.pyD23-Nov-202318.7 KiB490352

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