Home | History | Annotate | only in /external/grpc-grpc
Up to higher level directory
NameDateSize
.clang-format22-Oct-2020186
.clang-tidy22-Oct-2020381
.clang_complete22-Oct-2020368
.editorconfig22-Oct-2020113
.github/22-Oct-2020
.istanbul.yml22-Oct-2020135
.pylintrc22-Oct-20203.4K
.pylintrc-tests22-Oct-20204.2K
.rspec22-Oct-202095
.travis.yml22-Oct-20202.6K
.vscode/22-Oct-2020
.yardopts22-Oct-202016
AUTHORS22-Oct-202034
bazel/22-Oct-2020
BUILD22-Oct-202074.5K
build.yaml22-Oct-2020140.2K
build_config.rb22-Oct-2020653
BUILDING.md22-Oct-20205K
cmake/22-Oct-2020
CMakeLists.txt22-Oct-2020518.4K
CODE-OF-CONDUCT.md22-Oct-2020138
composer.json22-Oct-2020541
CONCEPTS.md22-Oct-20203.5K
config.m422-Oct-202039.9K
config.w3222-Oct-202048K
CONTRIBUTING.md22-Oct-20205.3K
doc/22-Oct-2020
etc/22-Oct-2020
examples/22-Oct-2020
Gemfile22-Oct-202089
gRPC-C++.podspec22-Oct-202043.5K
gRPC-Core.podspec22-Oct-202087.4K
gRPC-ProtoRPC.podspec22-Oct-20202.2K
gRPC-RxLibrary.podspec22-Oct-20201.6K
grpc.bzl22-Oct-20203.5K
grpc.def22-Oct-20207.6K
grpc.gemspec22-Oct-202079.9K
grpc.gyp22-Oct-2020115.7K
gRPC.podspec22-Oct-20202.6K
include/22-Oct-2020
LICENSE22-Oct-202011.1K
Makefile22-Oct-20201.1M
MANIFEST.md22-Oct-2020430
NOTICE.txt22-Oct-2020554
OWNERS22-Oct-2020607
package.xml22-Oct-2020119.4K
PYTHON-MANIFEST.in22-Oct-2020728
Rakefile22-Oct-20205.1K
README.md22-Oct-20204.3K
requirements.bazel.txt22-Oct-2020174
requirements.txt22-Oct-2020120
setup.cfg22-Oct-2020255
setup.py22-Oct-202013.6K
src/22-Oct-2020
summerofcode/22-Oct-2020
templates/22-Oct-2020
test/22-Oct-2020
third_party/22-Oct-2020
tools/22-Oct-2020
TROUBLESHOOTING.md22-Oct-20202K
WORKSPACE22-Oct-20201.3K

README.md

      1 gRPC - An RPC library and framework
      2 ===================================
      3 
      4 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.
      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 (a] 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 
     21 To maximize usability, gRPC supports the standard way of adding dependencies in your language of choice (if there is one).
     22 In most languages, the gRPC runtime comes in form of a package available in your language's package manager.
     23 
     24 For instructions on how to use the language-specific gRPC runtime in your 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  * [Node](https://github.com/grpc/grpc-node): `npm install grpc`
     32  * [Objective-C](src/objective-c): Add `gRPC-ProtoRPC` dependency to podspec
     33  * [PHP](src/php): `pecl install grpc`
     34  * [Python](src/python/grpcio): `pip install grpcio`
     35  * [Ruby](src/ruby): `gem install grpc`
     36  * [WebJS](https://github.com/grpc/grpc-web): follow the grpc-web instructions
     37 
     38 You can find per-language quickstart guides and tutorials in [Documentation section on grpc.io website](https://grpc.io/docs/). The code examples are available in the [examples](examples) directory.
     39 
     40 Precompiled bleeding-edge package builds of gRPC `master` branch's `HEAD` are uploaded daily to [packages.grpc.io](https://packages.grpc.io).
     41 
     42 # To start developing gRPC
     43 
     44 Contributions are welcome!
     45 
     46 Please 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 your changes to
     47 the gRPC codebase.
     48 The document also contains info on how the contributing process works and contains best practices for creating contributions.
     49 
     50 # Troubleshooting
     51 
     52 Sometimes things go wrong. Please check out the [Troubleshooting guide](TROUBLESHOOTING.md) if you are experiencing issues with gRPC.
     53 
     54 # Performance 
     55 
     56 See [Performance dashboard](http://performance-dot-grpc-testing.appspot.com/explore?dashboard=5636470266134528) for the performance numbers for the latest released version.
     57 
     58 # Concepts
     59 
     60 See [gRPC Concepts](CONCEPTS.md)
     61 
     62 # About This Repository
     63 
     64 This repository contains source code for gRPC libraries for multiple languages written on top of shared C core library [src/core](src/core).
     65 
     66 Libraries in different languages may be in different states of development. We are seeking contributions for all of these libraries.
     67 
     68 | Language                | Source                              |
     69 |-------------------------|-------------------------------------|
     70 | Shared C [core library] | [src/core](src/core)                |
     71 | C++                     | [src/cpp](src/cpp)                  |
     72 | Ruby                    | [src/ruby](src/ruby)                |
     73 | Python                  | [src/python](src/python)            |
     74 | PHP                     | [src/php](src/php)                  |
     75 | C#                      | [src/csharp](src/csharp)            |
     76 | Objective-C             | [src/objective-c](src/objective-c)  |
     77 
     78 | Language                | Source repo                                          |
     79 |-------------------------|------------------------------------------------------|
     80 | Java                    | [grpc-java](http://github.com/grpc/grpc-java)        |
     81 | Go                      | [grpc-go](http://github.com/grpc/grpc-go)            |
     82 | NodeJS                  | [grpc-node](https://github.com/grpc/grpc-node)       |
     83 | WebJS                   | [grpc-web](https://github.com/grpc/grpc-web)         |
     84 | Dart                    | [grpc-dart](https://github.com/grpc/grpc-dart)       |
     85 
     86