You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grpc-transcoding is a library that supports [transcoding](https://cloud.google.com/endpoints/docs/transcoding) so that HTTP/JSON can be converted to gRPC.
3
+
grpc-transcoding is a library that supports [transcoding]
It helps you to provide your APIs in both gRPC and RESTful style at the same time. The code is used in istio [proxy](https://github.com/istio/proxy) to provide HTTP+JSON interface to gRPC service.
7
+
It helps you to provide your APIs in both gRPC and RESTful style at the same
8
+
time. The code is used in istio [proxy](https://github.com/istio/proxy) and
9
+
cloud [endpoints](https://cloud.google.com/endpoints/) to provide HTTP+JSON
10
+
interface to gRPC service.
6
11
7
-
The code can be built with the following command
8
12
9
-
bazel build //...
13
+
## Develop
10
14
11
-
Tests can be run using
15
+
[Bazel](https://bazel.build/) is used for build and dependency management. The
16
+
following commands build and test sources:
12
17
13
-
bazel test //...
18
+
```bash
19
+
$ bazel build //...
20
+
$ bazel test //...
21
+
```
14
22
15
23
# Contribution
16
-
See [CONTRIBUTING.md](http://github.com/grpc-ecosystem/grpc-transcoding/blob/master/CONTRIBUTING.md).
24
+
See [CONTRIBUTING.md](CONTRIBUTING.md).
17
25
18
26
# License
19
-
grpc-transcoding is licensed under the Apache 2.0 license.
20
-
See [LICENSE](https://github.com/grpc-ecosystem/grpc-transcoding/blob/master/LICENSE)for more details.
27
+
grpc-httpjson-transcoding is licensed under the Apache 2.0 license. See
0 commit comments