Run elixir project on pure BEAM (without install Elixir)

I’m wondering whether it’s possible to include the standard Elixir library in a project, for example, using Mix. As it is customary to do in the Scala when running on the JVM

When you build a release using Distillery it will include all the code, including the standard library. In fact it can even include the erlang run time itself, so that erlang need not be installed on the target machine. All in a nice ~40mb tar

3 Likes

Excellent! Thank you!