Grpc.AspNetCore.Web 2.76.0

Prefix Reserved
dotnet add package Grpc.AspNetCore.Web --version 2.76.0
                    
NuGet\Install-Package Grpc.AspNetCore.Web -Version 2.76.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.76.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Grpc.AspNetCore.Web" Version="2.76.0" />
                    
Directory.Packages.props
<PackageReference Include="Grpc.AspNetCore.Web" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Grpc.AspNetCore.Web --version 2.76.0
                    
#r "nuget: Grpc.AspNetCore.Web, 2.76.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Grpc.AspNetCore.Web@2.76.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Grpc.AspNetCore.Web&version=2.76.0
                    
Install as a Cake Addin
#tool nuget:?package=Grpc.AspNetCore.Web&version=2.76.0
                    
Install as a Cake Tool

Grpc.AspNetCore.Web

Grpc.AspNetCore.Web provides middleware that enables ASP.NET Core gRPC services to accept gRPC-Web calls.

Configure gRPC-Web

In Program.cs:

using GrpcGreeter.Services;

var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddGrpc();

var app = builder.Build();

// Configure the HTTP request pipeline.
app.UseRouting();
app.UseGrpcWeb(new GrpcWebOptions { DefaultEnabled = true });
app.MapGrpcService<GreeterService>();

app.Run();

gRPC-Web can be enabled for all gRPC services by setting GrpcWebOptions.DefaultEnabled = true, or enabled on individual services with EnableGrpcWeb():

app.MapGrpcService<GreeterService>().EnableGrpcWeb();

gRPC-Web and streaming

Traditional gRPC over HTTP/2 supports streaming in all directions. gRPC-Web offers limited support for streaming:

  • gRPC-Web browser clients don't support calling client streaming and bidirectional streaming methods.
  • gRPC-Web .NET clients don't support calling client streaming and bidirectional streaming methods over HTTP/1.1.
  • ASP.NET Core gRPC services hosted on Azure App Service and IIS don't support bidirectional streaming.

When using gRPC-Web, we only recommend the use of unary methods and server streaming methods.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (28)

Showing the top 5 NuGet packages that depend on Grpc.AspNetCore.Web:

Package Downloads
Sitko.Core.Grpc.Server

Sitko.Core is a set of libraries to help build .NET Core applications fast

DH.Grpc

DH框架Grpc扩展类

Ivy

Build Internal Applications with AI and Pure C#

GamesCheetah.RealtimeEmbeddedServer

Package Description

Girvs.WebFrameWork

Package Description

GitHub repositories (22)

Showing the top 20 popular GitHub repositories that depend on Grpc.AspNetCore.Web:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
abpframework/abp-samples
Sample solutions built with the ABP Framework
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
mixcore/mix.core
🚀 A future-proof enterprise web CMS supporting both headless and decoupled approaches. Build any type of app with customizable APIs on ASP.NET Core/.NET Core. Completely open-source and designed for flexibility.
gustavnavar/Grid.Blazor
Grid component with CRUD for Blazor (client-side and server-side) and ASP.NET Core MVC
microsoft/RockPaperScissorsLizardSpock
Rock, Paper, Scissors, Lizard, Spock - Sample Application
havit/Havit.Blazor
Free Bootstrap 5 components for ASP.NET Blazor + optional enterprise-level stack for Blazor development (gRPC code-first, layered architecture, localization, auth, ...)
SteveSandersonMS/BlazeOrbital
Sample application for Blazor WebAssembly on .NET 6
rstropek/Samples
VSadov/Satori
Experimenting with dotnet runtime.
yc-l/yc.boilerplate
YC. Boilerplate is a set of loose coupling, flexible combination, complete functions, convenient development, and reduces the workload of development.
chunliu/AzureDesignStudio
A web app that helps you create the architecture design diagram for your Azure solutions and automatically generate IaC code from it.
ganweisoft/GrpcServer
GrpcServer builds a lightweight, high-performance proxy service framework using the gRPC (Google Remote Procedure Call) protocol.
thisisnabi/Shortener
Shortener Url as a service in ASP.NET Core and Actor Model
servicetitan/Stl.Fusion.Samples
A collection of samples for Fusion library: https://github.com/servicetitan/Stl.Fusion
sitkoru/Sitko.Core
Sitko.Core is a set of libraries to help build .NET Core applications fast
anuviswan/LearningPoint
A repository for learning different technologies, frameworks, features......
Version Downloads Last Updated
2.76.0 24,582 12/19/2025
2.76.0-pre1 1,007 11/13/2025
2.71.0 942,769 4/25/2025
2.71.0-pre1 390 4/16/2025
2.70.0 315,301 3/10/2025
2.70.0-pre1 452 2/26/2025
2.67.0 928,621 11/21/2024
2.67.0-pre1 654 10/22/2024
2.66.0 436,631 9/20/2024
2.66.0-pre1 345 9/6/2024
2.65.0 374,166 7/27/2024
2.65.0-pre1 251 7/20/2024
2.64.0 59,458 7/19/2024
2.64.0-pre1 224 7/15/2024
2.63.0 503,778 5/24/2024
2.63.0-pre1 19,548 5/8/2024
2.62.0 475,767 3/29/2024
2.62.0-pre1 875 3/8/2024
2.61.0 311,150 2/22/2024
2.61.0-pre1 8,433 2/8/2024
2.60.0 529,204 1/3/2024
2.60.0-pre1 6,768 12/14/2023
2.59.0 440,206 11/8/2023
2.59.0-pre1 894 10/27/2023
2.58.0 73,815 10/19/2023
2.58.0-pre1 4,319 10/9/2023
2.57.0 252,719 9/6/2023
2.57.0-pre1 3,998 8/31/2023
2.56.0 52,860 8/25/2023
2.56.0-pre2 3,124 8/16/2023
2.56.0-pre1 3,438 8/3/2023
2.55.0 349,560 7/4/2023
2.55.0-pre1 1,814 6/23/2023
2.54.0 69,132 6/15/2023
2.54.0-pre1 6,159 5/25/2023
2.53.0 284,809 5/5/2023
2.53.0-pre1 5,972 4/12/2023
2.52.0 332,331 3/15/2023
2.52.0-pre1 1,126 3/3/2023
2.51.0 686,193 1/2/2023
2.51.0-pre1 2,092 12/7/2022
2.50.0 246,751 11/17/2022
2.50.0-pre1 2,866 11/3/2022
2.49.0 495,054 9/26/2022
2.49.0-pre1 1,580 9/1/2022
2.48.0 199,875 8/24/2022
2.48.0-pre1 1,007 8/17/2022
2.47.0 228,590 7/3/2022
2.47.0-pre1 593 6/23/2022
2.46.0 166,294 5/13/2022
2.46.0-pre1 597 4/28/2022
2.45.0 345,610 4/19/2022
2.45.0-pre1 1,192 4/7/2022
2.44.0 163,981 3/17/2022
2.44.0-pre1 636 3/9/2022
2.43.0 157,350 2/25/2022
2.43.0-pre1 2,686 1/28/2022
2.42.0 347,391 1/19/2022
2.42.0-pre1 2,992 12/30/2021
2.41.0 172,630 12/7/2021
2.41.0-pre1 1,269 11/12/2021
2.40.0 425,886 10/5/2021
2.40.0-pre1 1,897 9/9/2021
2.39.0 120,021 8/18/2021
2.39.0-pre1 1,469 8/6/2021
2.38.0 349,484 6/11/2021
2.38.0-pre1 605 6/4/2021
2.37.0 135,038 4/20/2021
2.37.0-pre1 538 4/14/2021
2.36.0 89,309 3/17/2021
2.36.0-pre1 951 3/9/2021
2.35.0 57,600 2/4/2021
2.35.0-pre1 775 1/26/2021
2.34.0 120,122 12/11/2020
2.34.0-pre1 689 12/1/2020
2.33.1 63,153 10/28/2020
2.33.1-pre1 673 10/22/2020
2.32.0 11,679 10/5/2020
2.32.0-pre1 2,067 9/8/2020
2.31.0 41,657 8/14/2020
2.31.0-pre2 748 8/3/2020
2.30.0 18,054 7/16/2020
2.30.0-pre1 1,610 6/17/2020
2.29.0 104,757 5/27/2020
2.29.0-pre1 3,311 5/15/2020
2.28.0-pre2 27,313 3/11/2020
2.28.0-pre1 3,711 3/3/2020
2.27.0-pre1 10,431 1/24/2020