Are there any examples of F# being used with gRPC?

I’m using the standard routing in Giraffe right now and returning JSON, but I’m looking to give gRPC a try. Is this possible in F# at the moment? Or will I have to create wrapper code around a C# project?

You might be able to use Falanx here to generate the protobuf interop code for you? @7sharp9 would know more.

2 Likes

Thanks, yes I’ve seen Falanx. Cool project, but it appears to only handle serialization and deserialization of protobuf and doesn’t include the gRPC bit. https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md

2 Likes

https://github.com/SaturnFramework/Saturn/tree/master/sample/gRpcSample not sure whether this is what you’re after

1 Like