-
## Solution (for JS at least)
```sh
npm install --location=global protoc-gen-ts
```
```sh
protoc \
-I="$CORE_PROTO_PATH" \
--js_out="import_style=commonjs:$CORE_WEB_OUT_PATH" \
…
-
I am using the Blazor Example provided to host a GRPC Service. That works great.
I'm trying to also then call it the Service from a console app.
```
using Data.Shared.Services;
using Grpc.Core…
-
Hi all
I'm struggling to make the helloworld example work. This is what I have:
- I installed `protoc` with brew
- I installed `protoc-gen-grpc-web`: followed the instructions [here](https://gi…
-
Hi i have created my grpc server on nodejs but i want to connect my grpc server with reactjs i want to use grpc web on my react app.
Firstly i write this command
protoc ./protos/helloworld.proto \…
-
I used `protoc -I=. protos/*.proto --js_out=import_style=commonjs,binary:grpcproto_web/ --grpc-web_out=import_style=typescript,mode=grpcweb:grpcproto_web/` to generate my proto file.
Then whenever …
-
```
[EffectMethod]
public async Task RegisterTenant(RegisterTenant action, IDispatcher dispatcher) {
try {
using var call = _client.RegisterTenant(new RegisterTenantRequest…
-
When I use grpc-web to request grpc-backend, panic the err: "TypeError: request.serializeBinary is not a function", I use proto way is :protoc -I. --js_out=import_style=commonjs:./fe/src/api/ --grpc-w…
-
Create simple proto file:
```
syntax = "proto3";
message Test {
bytes test_bytes_field = 1;
}
```
Generate code using buf:
```
# buf.gen.yaml
version: v1
plugins:
- name: grp…
-
**Context: .net 7.0**
My server side is done in asp.net core and the client side is done in Blazer webassembly as following (`Program.cs`):
```
...
builder.Services.AddSingleton(provider =>
{…
-
Hello,
I m trying to add a client side load balancing for my Blazor application using a static Resolver , but it's not working and I m getting the below exception :
> _The underlying HTTP trans…