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

..16-Feb-2017-

Documentation/H16-Feb-2017-4230

benchmark/H16-Feb-2017-2,4541,894

codes/H16-Feb-2017-17731

credentials/H16-Feb-2017-405231

examples/H16-Feb-2017-1,8981,335

grpclog/H16-Feb-2017-16762

health/H16-Feb-2017-234169

interop/H16-Feb-2017-1,7641,381

metadata/H16-Feb-2017-13573

naming/H16-Feb-2017-7418

peer/H16-Feb-2017-6618

test/H16-Feb-2017-981728

transport/H16-Feb-2017-3,1162,242

.travis.ymlH A D16-Feb-2017297 1410

CONTRIBUTING.mdH A D16-Feb-2017745 2416

LICENSEH A D16-Feb-20171.4 KiB2925

MakefileH A D16-Feb-2017941 5139

PATENTSH A D16-Feb-20171.3 KiB2320

README.mdH A D16-Feb-20171.2 KiB3321

call.goH A D16-Feb-20175.8 KiB191139

clientconn.goH A D16-Feb-201715.9 KiB591439

codegen.shH A D16-Feb-2017627 182

coverage.shH A D16-Feb-20171.1 KiB4838

doc.goH A D16-Feb-2017120 71

picker.goH A D16-Feb-20177.2 KiB244160

rpc_util.goH A D16-Feb-201712.1 KiB445293

server.goH A D16-Feb-201722 KiB784619

stream.goH A D16-Feb-201711.1 KiB412308

trace.goH A D16-Feb-20173.6 KiB12166

README.md

1#gRPC-Go
2
3[![Build Status](https://travis-ci.org/grpc/grpc-go.svg)](https://travis-ci.org/grpc/grpc-go) [![GoDoc](https://godoc.org/google.golang.org/grpc?status.svg)](https://godoc.org/google.golang.org/grpc)
4
5The Go implementation of [gRPC](http://www.grpc.io/): A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the [gRPC Quick Start](http://www.grpc.io/docs/) guide.
6
7Installation
8------------
9
10To install this package, you need to install Go 1.4 or above and setup your Go workspace on your computer. The simplest way to install the library is to run:
11
12```
13$ go get google.golang.org/grpc
14```
15
16Prerequisites
17-------------
18
19This requires Go 1.4 or above.
20
21Constraints
22-----------
23The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the [list](http://godoc.org/google.golang.org/grpc?imports), you need a discussion with gRPC-Go authors and consultants.
24
25Documentation
26-------------
27See [API documentation](https://godoc.org/google.golang.org/grpc) for package and API descriptions and find examples in the [examples directory](examples/).
28
29Status
30------
31Beta release
32
33