grpc-web

gRPC for Web Clients (by grpc)

Grpc-web Alternatives

Similar projects and alternatives to grpc-web

  1. gRPC

    220 grpc-web VS gRPC

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

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management β€” all implemented with just a few lines of code. Start building today.

    Civic Auth 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

    πŸ”¨ The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

  6. buf

    49 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. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. twirp

    A simple RPC framework with protobuf service definitions

  11. rupy

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

  12. bebop

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

  13. connect-es

    28 grpc-web VS connect-es

    The TypeScript implementation of Connect: Protobuf RPC that works.

  14. adama-lang

    A headless spreadsheet document container service.

  15. protobuf-ts

    14 grpc-web VS protobuf-ts

    Protobuf and RPC for TypeScript

  16. evans

    Evans: more expressive universal gRPC client

  17. tempo

    13 grpc-web VS tempo

    πŸ₯ Don't miss a beat. Real-time, end-to-end typesafe APIs. (by betwixt-labs)

  18. webtransport

    WebTransport is a web API for flexible data transport

  19. telefunc

    12 grpc-web VS telefunc

    Remote Functions. Instead of API.

  20. wombat

    3 grpc-web VS wombat

    Cross platform gRPC client (by rogchap)

  21. go_serialization_benchmarks

    Benchmarks of Go serialization methods

  22. protobuf-es

    7 grpc-web VS protobuf-es

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

  23. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
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-04-21.
  • 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
  • Introducing Tempo: low latency, cross-platform, end-to-end typesafe APIs
    12 projects | /r/programming | 2 May 2023
    The gRPC-Web protocol supports HTTP/1 and can be used from a browser.
  • A note from our sponsor - InfluxDB
    influxdata.com | 25 Apr 2025
    Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems. Learn more β†’

Stats

Basic grpc-web repo stats
37
8,869
5.2
5 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
Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management β€” all implemented with just a few lines of code. Start building today.
www.civic.com

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