Timo Stamm

Results 302 comments of Timo Stamm

Hey Gabriel, we have our eyes on this feature, but unfortunately, it is not widely available yet. See https://developer.mozilla.org/en-US/docs/Web/API/Request/body#browser_compatibility for context. It might be worth giving it a try with...

Hey Robbert :wave: The latest release [v0.8.5](https://github.com/bufbuild/connect-es/releases/tag/v0.8.5) includes a fix for the AbortController issue. Let me know if that works for you. Yes, creating the entire router for each request...

Robbert, the (improved) code from the request/response gist landed in https://github.com/bufbuild/connect-es/pull/575. Unfortunately, it uncovered an underlying issue: Our handlers return the response before the implementation had a chance to populate...

Hey @timdp 👋 > Are you saying that when we convert a universal response to a fetch response, we do so before the headers on the universal response have been...

Hey @oott123, thanks for raising the issue. So far, we have held off supporting client-streaming because it is not widely supported yet. On MDN, the [browser compatibility table](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#browser_compatibility) shows a...

> Actually, Firefox already supported this feature, at least here on my machine Could you share which version you are running? We did not see the feature detection recommended by...

@oott123, let me wrap up https://github.com/bufbuild/connect-es/pull/673 first, I will take a look then.

Apologies that this hasn't gotten attention yet, @oott123. Hope we can help push this across soon.

I believe that the other nixpks are community-maintained. Thankfully, @felschr opened a PR to add nixpks in https://github.com/NixOS/nixpkgs/pull/243432. Unfortunately, the PR ran into some of the intricacies of the npm...

Thanks for the detailed write-up, John! In practice, providing request fields with an object initializer is more convenient and reports unknown properties as an error: ```ts await client.requestA({ fieldA: "abc",...