The Buf tool, here, allows the user to develop compiler configurations that can be used to transform protobuf .proto files to source code in a predictable manner, without having to interact directly with protoc-gen-go
, protoc-gen-grpc
or other protobuf plugins. This tool also offers access to remote repositories for uploading and sharing protobuf code, known as the Buf Schema Registry or BRS. Additionally, buf offers integration with GitHub actions.
Questions tagged [buf]
17 questions
0
votes
0 answers
How to check if a proto has the same filename as another in the entire schema with buf linter/breaking change detector?
I would like to know if it's possible to check if two protos in my entire schema have the same filename with buf linter/breaking change detector rules. This may be interesting to me for preventing future issues on my project.
For example, if I…

user18421857
- 1
- 1
0
votes
0 answers
use same message separate module in buf build
We are creating api for web app and smartphone app with protocol buffer.
There is a common message between the definition for the web and the definition for the smartphone application.
webapi ┬ myuniquenamemoduleweb ┬ common ┬ bar.proto
├…

syuh31
- 1
- 3