remix alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view remix 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. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
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_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_protobuffs
rebar3 protobuffs provider using protobuffs from Basho -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
Elixir and Phoenix Application Security Platform
Do you think we are missing an alternative of remix or a related project?
Popular Comparisons
README
Remix
Recompiles mix project on any lib file change/addition.
Intended for development use only.
Installation
Add remix to deps:
defp deps do
[{:remix, "~> 0.0.1", only: :dev}]
end
Add add :remix
as a development only OTP app.
def application do
[applications: applications(Mix.env)]
end
defp applications(:dev), do: applications(:all) ++ [:remix]
defp applications(_all), do: [:logger]
with escript compilation (in config.exs) and silent mode (won't output to iex each time it compiles):
config :remix,
escript: true,
silent: true
If these vars are not set, it will default to verbose (silent: false) and no escript compilation (escript: false).
Usage
Save or create a new file in the lib directory. Thats it!
About
Co-authored by the Agilion team during a Brown Bag Beers learning session as an exploration into Elixir, OTP, and recursion.
License
Remix source code is released under the Apache 2 License. Check LICENSE file for more information.
*Note that all licence references and agreements mentioned in the remix README section above
are relevant to that project's source code only.