Erl2ex

Build Status

An Erlang to Elixir transpiler. Converts Erlang source code to equivalent Elixir source.

This software is currently highly experimental. Some capabilities are not yet complete, and so far it has been tested only on small code fragments. See also the Caveats section for a list of known issues and incomplete features.

The vision and end goal is automated conversion of major Erlang code bases (such as potentially Elixir itself) to correct and functional (if not necessarily fully idiomatic) Elixir. It could be used as the first step in doing a port.

Installing

Erl2ex may be run as a mix task or as a standalone escript.

Installing the mix task

To run the mix task, first add Erl2ex as a dependency to your existing Elixir project:

def deps do
[ {:erl2ex, ">= 0.0.1", only: :dev} ]
end

After adding Erl2ex as a dependency, run mix deps.get followed by mix deps.compile to install it. An erl2ex will now be available. Run mix help erl2ex for help.

Building the escript

To build a standalone command line application (escript), clone this repository using git clone https://github.com/dazuma/erl2ex.git, and then run mix escript.build within the cloned project.

Usage

Erl2ex may be run in three modes:

Various switches may also be provided on the command line, including the include path for searching for Erlang include files (.hrl), and other conversion settings.

For detailed help, use mix help erl2ex for the mix task, or erl2ex --help for the standalone tool.

Caveats

This software is still under heavy development, and many capabilities are not yet complete. The following is a partial list of known issues and planned features.

Known issues

Desired features

Contributing

While we appreciate contributions, please note that this software is currently highly experimental, and the code is evolving very rapidly. It is recommended to contact the author before embarking on a major pull request. More detailed contribution guidelines will be provided when the software stabilizes further.

The source can be found on Github at https://github.com/dazuma/erl2ex

License

Copyright 2015 Daniel Azuma

This software is licensed under a BSD style license.

See the LICENSE.md file for more information.