Skip to content
Advertisement

gRPC: Unknown JSON as input and output

I’m new to gRPC, I’m trying to expose gRPC server in which and rpc does not have known shape before hand.

Requirement is that particular field can have any value present in it.

Ex: file.proto

JavaScript

When i went through the docs there is no way we can create gRPC server without knowing the fields before hand. For this struct to work, i’m doing the following conversion and making it work.

JavaScript

Is there util available already to do this conversion ? OR is there any other way i can achieve this without the conversion to make gRPC server parse the request ?

Imagine what i have to do for the below json ?

JavaScript

Note: I’m using @grpc/grpc-js package alone for now.

Advertisement

Answer

There is not an existing utility for performing this transformation, but it is not that complicated to write a function to do it. For example, I use the following code in the @grpc/grpc-js-xds library:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement