Skip to content

Commit 307a35e

Browse files
authored
Update grpc.md
Remove unnecessary comma
1 parent a99b608 commit 307a35e

File tree

1 file changed

+1
-1
lines changed
  • docs/architecture/cloud-native

1 file changed

+1
-1
lines changed

docs/architecture/cloud-native/grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Favor gRPC for the following scenarios:
8080
- Point-to-point real-time communication - gRPC can push messages in real time without polling and has excellent support for bi-directional streaming.
8181
- Network constrained environments – binary gRPC messages are always smaller than an equivalent text-based JSON message.
8282

83-
At the time, of this writing, gRPC is primarily used with backend services. Modern browsers can't provide the level of HTTP/2 control required to support a front-end gRPC client. That said, there's support for [gRPC-Web with .NET](https://devblogs.microsoft.com/aspnet/grpc-web-for-net-now-available/) that enables gRPC communication from browser-based apps built with JavaScript or Blazor WebAssembly technologies. [gRPC-Web](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-WEB.md) enables an ASP.NET Core gRPC app to support gRPC features in browser apps:
83+
At the time of this writing, gRPC is primarily used with backend services. Modern browsers can't provide the level of HTTP/2 control required to support a front-end gRPC client. That said, there's support for [gRPC-Web with .NET](https://devblogs.microsoft.com/aspnet/grpc-web-for-net-now-available/) that enables gRPC communication from browser-based apps built with JavaScript or Blazor WebAssembly technologies. [gRPC-Web](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-WEB.md) enables an ASP.NET Core gRPC app to support gRPC features in browser apps:
8484

8585
- Strongly typed, code-generated clients
8686
- Compact Protobuf messages

0 commit comments

Comments
 (0)