grpc-web

gRPC for Web Clients (by grpc)

Grpc-web Alternatives

Similar projects and alternatives to grpc-web

  1. gRPC

    234 grpc-web VS gRPC

    C++ based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. Protobuf

    Protocol Buffers - Google's data interchange format

  4. json-api

    A specification for building JSON APIs

  5. vike

    66 grpc-web VS vike

    (Replaces Next.js/Nuxt) 🔨 Build mission-critical applications with stability and development freedom.

  6. buf

    51 grpc-web VS buf

    The best way of working with Protocol Buffers.

  7. grpcurl

    Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers

  8. grpc-gateway

    gRPC to JSON proxy generator following the gRPC HTTP spec

  9. connect-es

    30 grpc-web VS connect-es

    The TypeScript implementation of Connect: Protobuf RPC that works.

  10. twirp

    A simple RPC framework with protobuf service definitions

  11. rupy

    32 grpc-web VS rupy

    HTTP App. Server and JSON DB - Shared Parallel (Atomic) & Distributed

  12. adama-lang

    A headless spreadsheet document container service.

  13. bebop

    🎷No ceremony, just code. Blazing fast, typesafe binary serialization.

  14. evans

    Evans: more expressive universal gRPC client

  15. webtransport

    WebTransport is a web API for flexible data transport

  16. protobuf-ts

    14 grpc-web VS protobuf-ts

    Protobuf and RPC for TypeScript

  17. telefunc

    13 grpc-web VS telefunc

    Remote Functions.

  18. tempo

    13 grpc-web VS tempo

    🥁 Don't miss a beat. Real-time, end-to-end typesafe APIs. (by 6over3)

  19. protobuf-es

    9 grpc-web VS protobuf-es

    Protocol Buffers for ECMAScript. The only JavaScript Protobuf library that is fully-compliant with Protobuf conformance tests.

  20. go_serialization_benchmarks

    Benchmarks of Go serialization methods

  21. ngx-grpc

    1 grpc-web VS ngx-grpc

    Discontinued Angular gRPC framework

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better grpc-web alternative or higher similarity.

grpc-web discussion

Log in or Post with

grpc-web reviews and mentions

Posts with mentions or reviews of grpc-web. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-05.
  • Real-Time Data with gRPC Streaming: .NET & React with Connect RPC
    4 projects | dev.to | 5 Jul 2025
    Instead of using the standard gRPC JavaScript library (grpc-web), which hasn’t been updated in almost two years, I opted for the Connect RPC implementation. Connect RPC offers a modern, robust, and developer-friendly experience for gRPC in the browser, making it easy to consume streaming endpoints and integrate them seamlessly into React components.
  • Using gRPC in React the Modern Way: From gRPC-web to Connect
    7 projects | dev.to | 21 Apr 2025
    The official gRPC-web implementation is grpc-web. You first need to install a compiler:
  • Top 4 gRPC API Testing Tools You Need to Know
    3 projects | dev.to | 13 Feb 2025
    gRPC-Web enables developers to interact with gRPC services from web browsers. It’s particularly useful for testing gRPC APIs in environments that require a frontend interface.
  • gRPC: 5 Years Later, Is It Still Worth It?
    4 projects | news.ycombinator.com | 3 Sep 2024
    It drives me bonkers that HTTP packs so many awesome capabilities that enable so much awesome gRPC stuff.

    Then web browsers never implement any of those capabilities.

    gRPC-web's roadmap is still a huge pile of workarounds they intend to build. These shouldn't be necessary! https://github.com/grpc/grpc-web/blob/master/doc/roadmap.md

    Instead of giving us http-push, everyone said, oh, we haven't figured out how to use it for content delivery well. And we've never ever let anyone else use it for anything. So to got canned.

    Http-trailers also seems to not have support, afaik.

    Why the web pours so much into HTML, js, CSS, but utterly neglects http, to the degree where grpc-web will probably end up tunneling http-over-webtransport is so cursed.

  • Browser Client to gRPC Server Routing options: Connect, gRPC-web, gRPC-gateway and more!
    5 projects | dev.to | 9 Aug 2024
    Connect also offers direct support for the gRPC-Web protocol used by grpc/grpc-web, without relying on a translating proxy like Envoy.
  • Ask HN: WebSocket server transforming channel subscriptions to gRPC streams
    2 projects | news.ycombinator.com | 14 Aug 2023
    * Additionally, client can stream data to the backend server (if bidirectional GRPC streams are used). I.e. client sends WebSocket messages, those will be transformed to GRPC messages by WebSocket server and delivered to the application backend.

    As a result we have a system which allows to quickly create individual streams by using strict GRPC contract but terminating connections over WebSocket transport. So it works well in web browsers. After that no need to write WebSocket protocol, client implementation, handle WebSocket connection. This all will be solved by a suggested WebSocket server and its client SDKs.

    The mechanics is similar to Websocketd (https://github.com/joewalnes/websocketd), but instead of creating OS processes we create GRPC streams. The difference from grpc-web (https://github.com/grpc/grpc-web) is that we provide streaming capabilities but not exposing GRPC contract to the client - just allowing to stream any data as payload (both binary and text) with some wrappers from our client SDKs side for managing subscriptions. I.e. it's not native GRPC streams on the client side - we expose just Connection/Subscription object to stream in both directions. GRPC streams used only for communication between WebSocket server and backend. To mention - grpc-web does not support all kinds of streaming now (https://github.com/grpc/grpc-web#streaming-support) while proposed solution can. This all should provide a cross-platform way to quickly write streaming apps due to client SDKs and language-agnostic nature of GRPC.

    I personally see both pros and cons in this scheme (without concentrating on both too much here to keep the question short). I spent some time thinking about this myself, already have some working prototypes – but turned out need more opinions before moving forward with the idea and releasing this, kinda lost in doubts.

    My main question - whether this seems interesting for someone here? Do you find this useful and see practical value?

  • Build and Deploy a gRPC-Web App Using Rust Tonic and React
    7 projects | dev.to | 19 Jul 2023
    By default, web browsers do not support gRPC, but we will use gRPC-web to make it possible.
  • Lemmy v0.18.0 Release - A reddit alternative written in Rust.
    2 projects | /r/rust | 23 Jun 2023
    You just have to use a library implementation for JavaScript https://github.com/grpc/grpc-web
  • Full Stack Forays with Go and gRPC
    5 projects | dev.to | 5 Jun 2023
    TypeScript support remains an experimental feature of gRPC.
  • Seeking Opinion: Choosing Between Gateway and Envoy Proxy for Our Microservices Architecture
    1 project | /r/SoftwareEngineering | 2 Jun 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 15 Jun 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic grpc-web repo stats
38
9,223
5.3
6 days ago

grpc/grpc-web is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of grpc-web is JavaScript.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that JavaScript is
the 5th most popular programming language
based on number of references?