Popularity
2.4
Declining
Activity
0.0
Stable
10
2
3
Monthly Downloads: 1
Programming language: Erlang
License: BSD 3-clause "New" or "Revised" License
Tags:
Build Tools
Latest version: v0.2.0
rebar3_protobuffs alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view rebar3_protobuffs alternatives based on common mentions on social networks and blogs.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
reaxt
Use React template into your Elixir application for server rendering -
rebar3_auto
Rebar3 plugin to auto compile and reload on file change. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
reltool_util
Erlang reltool utility functionality application -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3.
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.com
Do you think we are missing an alternative of rebar3_protobuffs or a related project?
README
rebar3 protobuffs provider
Provider to compile protobuffers files using protobuffers.
Place your .proto
files in src
directory and they will be automatically
build.
Usage
Add the plugin to your rebar config:
{plugins, [rebar3_protobuffs]}.
The compile function is under the protobuffs namespace. To automatically compile .proto
files before
the Erlang compiler add the pre_hook to rebar.config:
{provider_hooks, [
{pre, [{compile, {protobuffs, compile}}]}
]}.