HN

Build StatusHex pm

A simple Hacker News API client in Elixir.

See https://hexdocs.pm/hn_ex/HN.html for full documentation.

See https://github.com/HackerNews/API for a thorough description of the API and the fields returned from the various calls.

API Calls

Each endpoint (see API docs above) has a corresponding function call (and unsafe version), for example:

      iex> HN.item(8863) # argument can be an integer or a string
      {:ok, %HN.Item{
           by: "dhouston",
           dead: nil,
           deleted: nil,
           descendants: 71,
           ...
      }}
      or 
      iex> HN.item!(8863) 
       %HN.Item{
           by: "dhouston",
           dead: nil,
           deleted: nil,
           descendants: 71,
           ...
      }}

Installation

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

def deps do
  [
    {:hn_ex, "~> 0.1"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/hn_ex.