ElixirChess is going to be a set of modules for processing chess games and validating moves. At the moment it only contains a Board module for converting a FEN position to a special board tuple and back to a FEN position. More to come.
If available in Hex, the package can be installed as:
-
Add elixirchess to your list of dependencies in
mix.exs
:def deps do [{:elixirchess, "~> 0.0.1"}] end
-
Ensure elixirchess is started before your application:
def application do [applications: [:elixirchess]] end