grpc/grpc-web

gRPC for Web Clients

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 17 minutes ago
Added to GitGenius on September 7th, 2026
Created on June 20th, 2016
Open Issues & Pull Requests: 167 (+0)
GitHub issues: Enabled
Number of forks: 801
Total Stargazers: 9,257 (+0)
Total Subscribers: 193 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 4.7 days
Mean response time: 433.9 days
90th percentile: 1925.5 days
Tracked items: 142

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 99% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "codegen" is answered fastest, typically in about 3 days, while "typescript" waits about 4 weeks. Only 2% of issues opened in the past year have been closed. Three people close 85% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 71
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,834 days
Stale 30+ days: 71
Stale 90+ days: 19

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • typescript (21)
  • codegen (10)
  • enhancement (5)
  • bug (3)
  • feature/fetch (3)
  • pending-clarification (3)
  • release-process (3)
  • Help welcome! (2)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

gRPC-web is a JavaScript implementation of gRPC for browser clients.

The tool solves the problem of enabling web browsers to communicate with gRPC services, which traditionally require HTTP/2 and binary protocols not directly supported by browser APIs. gRPC-web works by routing client requests through a proxy—Envoy by default—that translates between the gRPC protocol and a format the browser can handle. Clients connect to this proxy rather than directly to gRPC services, allowing developers to use gRPC's protocol buffer definitions and code generation in web applications.

Developers should choose gRPC-web when building browser-based clients that need to communicate with gRPC backends and want to leverage protocol buffers for service definitions and code generation. The tool currently supports unary RPCs and server-side streaming RPCs, though server-side streaming requires the grpcwebtext wire format mode. Client-side and bidirectional streaming are not yet supported. The project includes a runtime library available on npm and code generator plugins that work with the protoc compiler to generate JavaScript client stubs and message classes from .proto files. Setup requires installing protoc, the protoc-gen-js plugin, and the protoc-gen-grpc-web plugin, with Docker images available that include these prerequisites.

The project maintains active engagement with its roadmap, documenting planned support for additional languages and streaming modes. Development includes both core library updates and example applications demonstrating real-world usage patterns. The team regularly processes contributions and maintains documentation covering quick-start scenarios and advanced use cases.