An open API service indexing awesome lists of open source software.

https://github.com/maurodelazeri/grpcweb

grpcweb
https://github.com/maurodelazeri/grpcweb

golang grpc grpc-web

Last synced: about 1 year ago
JSON representation

grpcweb

Awesome Lists containing this project

README

          

# grpcweb

grpcweb

```
cd app/my-app/src/proto
protoc alaska.proto enum.proto user.proto --js_out=import_style=commonjs:. --grpc-web_out=import_style=commonjs,mode=grpcwebtext:.
```

```
cd proto/
protoc helloworld.proto --go_out=plugins=grpc:.
```

Start the server

```
go run main.go
```

Start the app

```
cd app/my-app/
yarn install
yarn start
```

```
docker build -t envoy:v1 .
docker run -d --name envoy -p 9901:9901 -p 8080:8080 envoy:v1
```