UDP Client Ex

Simple UDP client for Elixir.

CircleCI

Installation

If available in Hex, the package can be installed by adding udp_client_ex to your list of dependencies in mix.exs:

def deps do
  [
    {:udp_client_ex, "~> 0.1.0"}
  ]
end

You also need to add :udp_client_ex to your applications to ensure proper initialization:

def application do
  [applications: [:udp_client_ex]]
end

Eventually the library will be available on Hex and the documents found here.