Questions tagged [grpc-web]

gRPC-Web provides a JavaScript library that lets browser clients access a gRPC service.

gRPC is an open source remote procedure call (RPC) system initially developed at Google. It uses HTTP/2 for transport, Protocol Buffers as the interface description language, and provides features such as authentication, bidirectional streaming and flow control, blocking or nonblocking bindings, and cancellation and timeouts.

gRPC-Web Repository

gRPC-Web Documentation

217 questions
0
votes
1 answer

VueJS Grpc-Web module not found

I've created a fresh VueJS application with TypeScript functionality. When I generate using: protoc -I=. service.proto --js_out=import_style=typescript:. --grpc web_out=import_style=typescript,mode=grpcwebtext:. I get the following files: When I…
Dirk
  • 3,095
  • 4
  • 19
  • 37
0
votes
1 answer

Is it possible to write the server using grpc-java and call it from browser using grpc-web?

We have our micro-services implemented in grpc-java, is it possible to call it from browser using grpc-web? If yes any reference/documentation will be helpful.
Sanjit Kumar Mishra
  • 1,153
  • 13
  • 32
0
votes
1 answer

How do I map my working curl command into a grpc-web call

I am trying to get a working instance of grpc-web. I've got a backend service that looks like this. var grpc = require('grpc'); var messages = require('./example_pb'); var service = require('./example_grpc_pb'); function exampleOne(call)…
Zack
  • 13,454
  • 24
  • 75
  • 113
-1
votes
0 answers

How to integrate an existing GRPC Api inside REACT NATIVE project

Not able to integrate GRPC API into REACT NATIVE APP I tried to integrate GRPC api into react native app but getting react native run time enivorment does not have node module library support using grpc package not found
-1
votes
1 answer

When I use a Google service with Api laravel

Unable to create a FirestoreClient: The requested client requires the gRPC extension. Please see https://cloud.google.com/php/grpc for installation instructions.
-1
votes
1 answer

Unable to start envoy in docker-compose

I have this envoy.yaml admin: access_log_path: /tmp/admin_access.log address: socket_address: { address: 0.0.0.0, port_value: 9901 } static_resources: listeners: - name: listener_0 address: socket_address: { address:…
Alex Ironside
  • 4,658
  • 11
  • 59
  • 119
-1
votes
1 answer

GRPC-web RPCException Bad gRPC response. Invalid content-type value: text/html; charset=utf-8

I got an error when trying to fetch gRPC API (using C#) to blazor client, at first it worked fine but after adding IdentityServer4 and use CORS for gRPC-Web similar like in the docs. Here's the code relevant to the…
TheNoobProgrammer
  • 1,013
  • 4
  • 10
  • 21
1 2 3
14
15