ExLinkHeader

Parse HTTP link headers in Elixir.

Goal is to implement all in section 5 of http://tools.ietf.org/id/draft-nottingham-http-link-header-06.txt, however this is currently lacking support for:

Installation

The package can be installed as:

  1. Add ex_link_header to your list of dependencies in mix.exs:

    def deps do

     [{:ex_link_header, "~> 0.0.1"}]

    end

  2. Ensure ex_link_header is started before your application:

    def application do

     [applications: [:ex_link_header]]

    end