View Source CurlEx

Ultra-simple HTTP get. Shells out to curl. So it's a good idea to install it first.

Motivation

I got frustrated by Unknown CA errors from HTTPoison and Httpc. Meanwhile, curl works just fine.

Usage

iex(1)> CurlEx.get!("https://google.com")
"<HTML>...</HTML>"

Installation

def deps do
  [
    {:curl_ex, "~> 1.0.0"}
  ]
end