Popularity
7.3
Stable
Activity
0.0
Stable
148
9
27

Monthly Downloads: 1,091
Programming language: Elixir
License: Apache License 2.0
Tags: Build Tools    

remix alternatives and similar packages

Based on the "Build Tools" category.
Alternatively, view remix alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of remix or a related project?

Add another 'Build Tools' Package

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.