#gRPC-Web
50 acrónimos y términos técnicos que cualquier programador debería conocer.
De SPA a CI/CD pasando por SOLID y TDD.
Los vas a ver en PRs, reuniones y documentación.

Guárdalo. Te vas a cruzar con todos:
November 8, 2025 at 1:57 PM
the value is in the standardization

yes, shell scripts work. but you cant import shell scripts into a remote web app, that’s insecure

gRPC would work, but no AI tools are picking it up
chris.blue Chris @chris.blue · Sep 11
New post! MCP seems like a lot of hype without much substance. Seems like some developers are catching on.
This MCP Server Could Have Been a JSON File
There's a lot of buzz around MCP. I'm not convinced it needs to exist.
materializedview.io
September 12, 2025 at 12:48 AM
Trying out various libs for doing local RPC (C++, Python, maybe web later).
Building these from source is insane: gRPC helloworld builds >2k object files, takes ~10m to compile on 12 cores. cpprestsdk is similar in complexity. What gives?
December 7, 2024 at 9:12 PM
Wissance/WebApiToolkit: WebApi toolset that allows to make CRUD REST API like a cookie for ~ 20 lines of code, it also allow to build GRPC too by Wissance github.com/Wissance/Web... #aspnetcore
May 27, 2025 at 5:29 PM
www.manning.com/books/the-de... << ...This new edition of the book The Design of Web APIs covers the latest updates to the OpenAPI, teaches you to streamline & standardize API design decisions with rationale & automation, and gives you insights you can apply to other API styles, such as gRPC... >>
The Design of Web APIs, Second Edition - Arnaud Lauret
Learn how to design web APIs that are a delight to use and maintain. Thousands of developers have followed renowned API expert Arnaud Lauret’s guidance to create APIs that are flexible, secure, and e...
www.manning.com
October 9, 2025 at 6:45 PM
the direction this is going is like, the penumbra fullnode already serves http to serve grpc, what if it bundled in a basic block explorer or web frontend etc
November 20, 2023 at 12:45 AM
gRPC Web ainda tá na ativa? Quando eu lidava com front usava o mesmo proto nas duas pontas.
December 19, 2024 at 9:24 PM
APIs power the modern web!

Here’s a breakdown of key API types & concepts

🔹 REST: CRUD, HTTP Verbs, Stateless
🔹 GraphQL: Schema, Queries, Single Endpoint
🔹 gRPC: RPC, Protocol Buffers, Streaming
🔹 Other: SOAP, WebSockets, Microservices

Which one is your go-to API style?👇
April 7, 2025 at 8:00 AM
gRPC Web is still an obtuse experience after all these years
January 16, 2025 at 8:28 PM
Update: Achei o erro, tinha uma lib que tava puxando o spring-web e por consequ6encia ele tentava criar o server grpc.
March 8, 2025 at 1:33 AM
第1特集はgRPCによるWeb APIの設計・実装です!(代返してみました :-)
June 13, 2023 at 2:44 AM
With a serial connection up between my genetic device and my web interface, I'm at the crossroads of picking a serialisation protocol. Any hot takes?

I was aiming for gRPC + protobuf, but gRPC needs HTTP (vs serial that I have) so maybe raw protobuf will be the best?
February 18, 2025 at 12:08 PM
Showcasing WebApiToolkit – A .NET Web API (REST, GRPC) Constructor with Swagger, Logging & More https://old.reddit.com/r/csharp/comments/1kvuvsk/showcasing_webapitoolkit_a_net_web_api_rest_grpc/

#csharp #dotnet
May 26, 2025 at 2:03 PM
Something that might play nicer with standard tooling is Connect RPC from the folks who make Buf. The Connect protocol also uses Protobuf but its output is gRPC and gRPC-web compliant. As a bonus, it works with normal tools like curl!

connectrpc.com
Connect
Simple, reliable, interoperable: Protobuf RPC that works.
connectrpc.com
July 9, 2025 at 1:47 AM
The latest update for #Honeybadger includes "Building a #gRPC #Nodejs API" and "Multithreading in #JavaScript with Web Workers".

#DevOps https://opsmtrs.com/2Y5KhaD
Honeybadger
Zero-instrumentation, 360 degree coverage of errors, outages and service degradation. Deploy with confidence and be your team's devops hero.
opsmtrs.com
May 29, 2025 at 5:10 AM
What Are gRPC Web Services and When Should I Use Them? #aspnetcore #dotnetcore #webdev #grpc https://lnkd.in/eqR2a7k
LinkedIn
This link will take you to a page that’s not on LinkedIn
lnkd.in
December 1, 2024 at 11:36 AM
I basically want the gRPC experience where it takes in protos and spits out both a client and server that already know how to talk to one another… but it needs to work on web. Honestly I think this is more a general GCP problem. Solutions exist for this like API Gateway or Cloud Endpoints
May 16, 2025 at 10:34 PM
50 acrónimos y términos técnicos que cualquier programador debería conocer.
De SPA a CI/CD pasando por SOLID y TDD.
Los vas a ver en PRs, reuniones y documentación.

Guárdalo. Te vas a cruzar con todos:
June 25, 2025 at 2:56 PM
> **gRPC connections now supported**
> Deno can now connect to gRPC services using the `@grpc/grpc-js` client library from npm.

... You call this support? I thought it was some sort of vendor-native or web-compliant APIs.

RE: < […]
June 11, 2024 at 3:30 PM
Definitely worth clarifying that connectrpc.com is "gRPC done right" - gRPC / gRPC-Web compatible, but also debuggable from curl with URLs and JSON.
Connect
Simple, reliable, interoperable: Protobuf RPC that works.
connectrpc.com
January 17, 2025 at 1:34 AM
How to Utilize #gRPC-Web From a #Blazor #WebAssembly Application by Wael Kdouh. #dotnet #webdev #wasm #aspnetcore https://lnkd.in/eYwP8Bt
LinkedIn
lnkd.in
November 28, 2024 at 6:23 PM
Insanely wrong take (CRUD maps very well to HTTP verbs, and CRUD of objects is a huge portion of web apps).

Which isn’t to say GraphQL can’t be a lot better.

I mean use whatever architects best for your application, I’m working with gRPC right now. But REST is good.
#dev
Hot take. I think REST as an API model is bad.

The semantics of caching and side-effects are good, and the meta headers are useful, but the interface model of verbs on paths maps to nothing in programming languages and leads developers to writing endless boilerplate.
August 23, 2025 at 3:09 AM