Grpc.AspNetCore.Web
2.70.0
Prefix Reserved
dotnet add package Grpc.AspNetCore.Web --version 2.70.0
NuGet\Install-Package Grpc.AspNetCore.Web -Version 2.70.0
<PackageReference Include="Grpc.AspNetCore.Web" Version="2.70.0" />
<PackageVersion Include="Grpc.AspNetCore.Web" Version="2.70.0" />
<PackageReference Include="Grpc.AspNetCore.Web" />
paket add Grpc.AspNetCore.Web --version 2.70.0
#r "nuget: Grpc.AspNetCore.Web, 2.70.0"
#addin nuget:?package=Grpc.AspNetCore.Web&version=2.70.0
#tool nuget:?package=Grpc.AspNetCore.Web&version=2.70.0
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.
Links
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (21)
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扩展类 |
|
GamesCheetah.RealtimeEmbeddedServer
Package Description |
|
Girvs.WebFrameWork
Package Description |
|
GamesCheetah.StatusReceiver.Proto
Package Description |
GitHub repositories (18)
Showing the top 18 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.
|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 Preview 2, 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.
|
|
grpc/grpc-dotnet
gRPC for .NET
|
|
abpframework/abp-samples
Sample solutions built with the ABP Framework
|
|
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
|
|
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
|
|
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
|
|
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.
|
|
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......
|
|
Redth/Maui.UITesting
Experimenting with UI Testing approaches for .NET / MAUI
|
Version | Downloads | Last updated |
---|---|---|
2.70.0 | 48,352 | a month ago |
2.70.0-pre1 | 268 | 2 months ago |
2.67.0 | 366,022 | 5 months ago |
2.67.0-pre1 | 570 | 6 months ago |
2.66.0 | 307,067 | 7 months ago |
2.66.0-pre1 | 257 | 7 months ago |
2.65.0 | 246,713 | 9 months ago |
2.65.0-pre1 | 172 | 9 months ago |
2.64.0 | 37,799 | 9 months ago |
2.64.0-pre1 | 137 | 9 months ago |
2.63.0 | 371,873 | 5/24/2024 |
2.63.0-pre1 | 19,440 | 5/8/2024 |
2.62.0 | 341,302 | 3/29/2024 |
2.62.0-pre1 | 740 | 3/8/2024 |
2.61.0 | 264,683 | 2/22/2024 |
2.61.0-pre1 | 8,336 | 2/8/2024 |
2.60.0 | 449,540 | 1/3/2024 |
2.60.0-pre1 | 6,644 | 12/14/2023 |
2.59.0 | 329,600 | 11/8/2023 |
2.59.0-pre1 | 761 | 10/27/2023 |
2.58.0 | 63,901 | 10/19/2023 |
2.58.0-pre1 | 4,220 | 10/9/2023 |
2.57.0 | 227,945 | 9/6/2023 |
2.57.0-pre1 | 3,877 | 8/31/2023 |
2.56.0 | 46,422 | 8/25/2023 |
2.56.0-pre2 | 2,996 | 8/16/2023 |
2.56.0-pre1 | 3,189 | 8/3/2023 |
2.55.0 | 321,159 | 7/4/2023 |
2.55.0-pre1 | 1,695 | 6/23/2023 |
2.54.0 | 63,530 | 6/15/2023 |
2.54.0-pre1 | 5,986 | 5/25/2023 |
2.53.0 | 251,096 | 5/5/2023 |
2.53.0-pre1 | 5,606 | 4/12/2023 |
2.52.0 | 297,399 | 3/15/2023 |
2.52.0-pre1 | 923 | 3/3/2023 |
2.51.0 | 553,382 | 1/2/2023 |
2.51.0-pre1 | 1,893 | 12/7/2022 |
2.50.0 | 227,526 | 11/17/2022 |
2.50.0-pre1 | 2,732 | 11/3/2022 |
2.49.0 | 463,326 | 9/26/2022 |
2.49.0-pre1 | 1,389 | 9/1/2022 |
2.48.0 | 188,032 | 8/24/2022 |
2.48.0-pre1 | 858 | 8/17/2022 |
2.47.0 | 221,345 | 7/3/2022 |
2.47.0-pre1 | 408 | 6/23/2022 |
2.46.0 | 159,994 | 5/13/2022 |
2.46.0-pre1 | 436 | 4/28/2022 |
2.45.0 | 332,672 | 4/19/2022 |
2.45.0-pre1 | 1,034 | 4/7/2022 |
2.44.0 | 153,620 | 3/17/2022 |
2.44.0-pre1 | 464 | 3/9/2022 |
2.43.0 | 153,341 | 2/25/2022 |
2.43.0-pre1 | 2,520 | 1/28/2022 |
2.42.0 | 315,750 | 1/19/2022 |
2.42.0-pre1 | 2,745 | 12/30/2021 |
2.41.0 | 166,686 | 12/7/2021 |
2.41.0-pre1 | 1,116 | 11/12/2021 |
2.40.0 | 381,809 | 10/5/2021 |
2.40.0-pre1 | 1,729 | 9/9/2021 |
2.39.0 | 116,938 | 8/18/2021 |
2.39.0-pre1 | 1,163 | 8/6/2021 |
2.38.0 | 328,414 | 6/11/2021 |
2.38.0-pre1 | 432 | 6/4/2021 |
2.37.0 | 130,171 | 4/20/2021 |
2.37.0-pre1 | 378 | 4/14/2021 |
2.36.0 | 86,166 | 3/17/2021 |
2.36.0-pre1 | 770 | 3/9/2021 |
2.35.0 | 52,620 | 2/4/2021 |
2.35.0-pre1 | 581 | 1/26/2021 |
2.34.0 | 114,638 | 12/11/2020 |
2.34.0-pre1 | 509 | 12/1/2020 |
2.33.1 | 59,314 | 10/28/2020 |
2.33.1-pre1 | 512 | 10/22/2020 |
2.32.0 | 9,404 | 10/5/2020 |
2.32.0-pre1 | 1,676 | 9/8/2020 |
2.31.0 | 39,526 | 8/14/2020 |
2.31.0-pre2 | 573 | 8/3/2020 |
2.30.0 | 16,047 | 7/16/2020 |
2.30.0-pre1 | 1,427 | 6/17/2020 |
2.29.0 | 94,497 | 5/27/2020 |
2.29.0-pre1 | 3,026 | 5/15/2020 |
2.28.0-pre2 | 26,556 | 3/11/2020 |
2.28.0-pre1 | 3,466 | 3/3/2020 |
2.27.0-pre1 | 9,664 | 1/24/2020 |