All Projects → brennovich → protobuf-tools

brennovich / protobuf-tools

Licence: MIT license
Latest version of protobuf and dozen of plugins. All in a small Docker image

Programming Languages

Makefile
30231 projects

Projects that are alternatives of or similar to protobuf-tools

play-grpc
Play + Akka gRPC
Stars: ✭ 31 (+63.16%)
Mutual labels:  protobuf
savetheworldwithgo
Build systems with Go examples
Stars: ✭ 81 (+326.32%)
Mutual labels:  protobuf
compatip
A simple tool to ensure compatibility between microservices
Stars: ✭ 13 (-31.58%)
Mutual labels:  protobuf
go course
個人多年來學習與實作上的心得筆記
Stars: ✭ 25 (+31.58%)
Mutual labels:  protobuf
Protobuf-Dreamer
A tiled DeepDream project for creating any size of image, on both CPU and GPU
Stars: ✭ 39 (+105.26%)
Mutual labels:  protobuf
protodoc
protodoc generates Protocol Buffer documentation.
Stars: ✭ 43 (+126.32%)
Mutual labels:  protobuf
homebrew-extensions
🍻 Homebrew tap for PHP extensions
Stars: ✭ 264 (+1289.47%)
Mutual labels:  protobuf
FSharp.GrpcCodeGenerator
A protoc plugin to enable generation of F# code
Stars: ✭ 61 (+221.05%)
Mutual labels:  protobuf
monorepo-base
A Bazel monorepo with an example service using gRPC + Go + Protobuf, deployable to GCP via Kubernetes.
Stars: ✭ 49 (+157.89%)
Mutual labels:  protobuf
neofs-api-go
NeoFS API Golang repository contains implementation of core NeoFS structures that can be used for integration with NeoFS.
Stars: ✭ 14 (-26.32%)
Mutual labels:  protobuf
RESTvsGRPC
Evaluating Performance of REST vs. gRPC
Stars: ✭ 36 (+89.47%)
Mutual labels:  protobuf
yadoms
Yadoms is open source, simple, powerfull, flexible and multiplatforms domotic solution.
Stars: ✭ 56 (+194.74%)
Mutual labels:  protobuf
protolua
C++ implement encode, decode Protocol Buffers for Lua without code generation
Stars: ✭ 117 (+515.79%)
Mutual labels:  protobuf
iot-dev
Example IoT projects
Stars: ✭ 54 (+184.21%)
Mutual labels:  protobuf
qtprotobuf
Protobuf generator and bindings for Qt framework
Stars: ✭ 138 (+626.32%)
Mutual labels:  protobuf
redis-protobuf
Redis module for reading and writing Protobuf messages
Stars: ✭ 153 (+705.26%)
Mutual labels:  protobuf
server-client-template-go
No description or website provided.
Stars: ✭ 14 (-26.32%)
Mutual labels:  protobuf
protoactor-go
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
Stars: ✭ 4,138 (+21678.95%)
Mutual labels:  protobuf
protoc-plugin
A protoc compiler plugin for Clojure applications
Stars: ✭ 28 (+47.37%)
Mutual labels:  protobuf
goprotoc
Library for writing protoc plugins in Go; also includes a pure-Go protoc replacement
Stars: ✭ 73 (+284.21%)
Mutual labels:  protobuf

Protobuf Tools

A docker image with protobuf and a handful set of plugins.

Motivation

The whole idea is to provide an easy-almost-no-setup way to generate resources and documentation from protos.

Dependencies

  • Docker

Content

This image gives you a compiled protobuf and some of its plugins (not so many for now):

Usage

docker run with a couple options:

# Here we're inside your proto's folder, let's call it `my-protos`
cd ~/my-protos

docker run \
  --name my-protos
  -v `pwd`:/my-protos:ro \
  -w /my-protos \
  --rm -it brennovich/protobuf-tools:latest protoc --doc_out=html,index.html:/build *.proto

# Make sure to use docker cp instead of writing in mounted folder, it avoid permissions issues and is much more flexible
docker cp my-protos:/build compiled-protos
docker rm my-protos

For more examples compiling for various languages look `[Makefile]

Test, buid & release

All of that can be done using makefile:

make test # this will build a docker image of current HEAD and run plugins and extensions
make release RELEASE=3.0.0 # build a docker iamge, tag and publish it to brennovich/protobuf-tools docker hub repo

Checkout [Makefile] for more tasks ;)

Contributing

  1. Fork it
  2. Fix, or add your feature in a new branch
  3. Open up a Pull Request against this repo with an useful description
  4. Try to stick with formating conventions already used in the files
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].