Grpc.AspNetCore.Web
2.51.0
dotnet add package Grpc.AspNetCore.Web --version 2.51.0
NuGet\Install-Package Grpc.AspNetCore.Web -Version 2.51.0
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.51.0" />
paket add Grpc.AspNetCore.Web --version 2.51.0
#r "nuget: Grpc.AspNetCore.Web, 2.51.0"
// Install Grpc.AspNetCore.Web as a Cake Addin
#addin nuget:?package=Grpc.AspNetCore.Web&version=2.51.0
// Install Grpc.AspNetCore.Web as a Cake Tool
#tool nuget:?package=Grpc.AspNetCore.Web&version=2.51.0
Grpc.AspNetCore.Web
Grpc.AspNetCore.Web provides middleware that enables ASP.NET Core gRPC services to accept gRPC-Web calls.
In Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.AddGrpc();
services.AddGrpcWeb(o => o.GrpcWebEnabled = true);
}
public void Configure(IApplicationBuilder app)
{
app.UseRouting();
app.UseGrpcWeb();
app.UseEndpoints(endpoints =>
{
endpoints.MapGrpcService<GreeterService>();
});
}
gRPC-Web can be enabled for all gRPC services by setting GrpcWebOptions.GrpcWebEnabled = true
, or enabled on individual services with EnableGrpcWeb()
:
app.UseEndpoints(endpoints =>
{
endpoints.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.
Links
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
-
.NETCoreApp 3.0
- No dependencies.
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages (15)
Showing the top 5 NuGet packages that depend on Grpc.AspNetCore.Web:
Package | Downloads |
---|---|
Girvs.WebFrameWork
Package Description |
|
Havit.Blazor.Grpc.Server
HAVIT Blazor stack - gRPC Support - server-side |
|
GamesCheetah.RealtimeEmbeddedServer
Package Description |
|
MF40.Silo
Orleans Silo |
|
GamesCheetah.RegistryProto
Package Description |
GitHub repositories (12)
Showing the top 5 popular GitHub repositories that depend on Grpc.AspNetCore.Web:
Repository | Stars |
---|---|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 2.1, 2.2, 3.1, 5.0, 6.0 and 7.0 projects you can use. Readme contains explanations on all projects.
|
|
grpc/grpc-dotnet
gRPC for .NET
|
|
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
|
Version | Downloads | Last updated |
---|---|---|
2.51.0 | 24,209 | 1/2/2023 |
2.51.0-pre1 | 388 | 12/7/2022 |
2.50.0 | 60,789 | 11/17/2022 |
2.50.0-pre1 | 1,759 | 11/3/2022 |
2.49.0 | 113,886 | 9/26/2022 |
2.49.0-pre1 | 627 | 9/1/2022 |
2.48.0 | 65,288 | 8/24/2022 |
2.48.0-pre1 | 711 | 8/17/2022 |
2.47.0 | 119,057 | 7/3/2022 |
2.47.0-pre1 | 159 | 6/23/2022 |
2.46.0 | 102,500 | 5/13/2022 |
2.46.0-pre1 | 288 | 4/28/2022 |
2.45.0 | 212,838 | 4/19/2022 |
2.45.0-pre1 | 609 | 4/7/2022 |
2.44.0 | 78,242 | 3/17/2022 |
2.44.0-pre1 | 209 | 3/9/2022 |
2.43.0 | 58,820 | 2/25/2022 |
2.43.0-pre1 | 1,430 | 1/28/2022 |
2.42.0 | 124,902 | 1/19/2022 |
2.42.0-pre1 | 2,399 | 12/30/2021 |
2.41.0 | 137,854 | 12/7/2021 |
2.41.0-pre1 | 867 | 11/12/2021 |
2.40.0 | 222,507 | 10/5/2021 |
2.40.0-pre1 | 1,562 | 9/9/2021 |
2.39.0 | 91,840 | 8/18/2021 |
2.39.0-pre1 | 997 | 8/6/2021 |
2.38.0 | 231,248 | 6/11/2021 |
2.38.0-pre1 | 293 | 6/4/2021 |
2.37.0 | 115,650 | 4/20/2021 |
2.37.0-pre1 | 225 | 4/14/2021 |
2.36.0 | 80,214 | 3/17/2021 |
2.36.0-pre1 | 627 | 3/9/2021 |
2.35.0 | 45,670 | 2/4/2021 |
2.35.0-pre1 | 403 | 1/26/2021 |
2.34.0 | 88,558 | 12/11/2020 |
2.34.0-pre1 | 362 | 12/1/2020 |
2.33.1 | 36,400 | 10/28/2020 |
2.33.1-pre1 | 374 | 10/22/2020 |
2.32.0 | 7,742 | 10/5/2020 |
2.32.0-pre1 | 1,410 | 9/8/2020 |
2.31.0 | 35,908 | 8/14/2020 |
2.31.0-pre2 | 436 | 8/3/2020 |
2.30.0 | 15,601 | 7/16/2020 |
2.30.0-pre1 | 1,212 | 6/17/2020 |
2.29.0 | 68,832 | 5/27/2020 |
2.29.0-pre1 | 1,897 | 5/15/2020 |
2.28.0-pre2 | 22,949 | 3/11/2020 |
2.28.0-pre1 | 3,074 | 3/3/2020 |
2.27.0-pre1 | 8,857 | 1/24/2020 |