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 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
Tag: protocol-buffers
Protocol Buffer Field Options in Javascript/NodeJS
How does one get the options associated with a protocol buffer field? Suppose I have a field with a custom option like: Generated the js files with protoc I have read on how to retrieve the option in other languages from here, but can seem to get any working in Javascript. Any help would be greatly appreciated! Answer Unfortunately this