Timo Stamm

Results 302 comments of Timo Stamm

Hey Victor, we just looked at this topic in depth for [protobuf-es](https://github.com/bufbuild/protobuf-es), and came to the conclusion that objects are still the more convenient representation, even though a typed map...

Hey Petri, apologies for the late response. Subclasses are less useful than expected in generated code. You would be able to subclass a message, but for it to take effect,...

Supporting the HTTP_PROXY variables is a good call. Happy to accept a contribution, but an implementation that does not add dependencies would be preferred.

I assume you're using gRPC-web? It encodes messages and final trailers in the response body with a simple framing described in the [spec](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-WEB.md). protobuf-ts implements reading messages and a final...

Hey Daniel, apologies for the late response. It's hard to tell what's going on just based on the code INVALID_ARGUMENT. Looking at [grpc-web-transport.ts](https://github.com/timostamm/protobuf-ts/blob/main/packages/grpcweb-transport/src/grpc-web-transport.ts) and [grpc-web-format.ts](https://github.com/timostamm/protobuf-ts/blob/main/packages/grpcweb-transport/src/grpc-web-format.ts), I don't see us raising...

Good call. Would you like to open a PR against the 3.x branch?

> I've never seen a REST server treat a mangled JSON request payload as a 5xx Anything but a 400 is unexpected in my book. The gRPC protocol does not...

@AshotN, the new `app` directory in Next.js is still an experimental opt-in. We do not support it yet.

Hey @AshotN, yes we plan to support it. The first step was https://github.com/bufbuild/connect-es/pull/575 - it adds support for creating handlers using the fetch Request/Response types, which the new [Route Handlers](https://beta.nextjs.org/docs/routing/route-handlers)...

Related discussion for support for edge runtimes: https://github.com/connectrpc/connect-es/discussions/829