core.async.http.client is an HTTP client for clojure and clojurescript.
It uses core.async channels to return the responses.
core.async.http.client is available from Clojars
With Leiningen/Boot:
[core.async.http.client "0.2.0-SNAPSHOT"]
(http/get "http://www.example.com/resources/id")
(http/post "http://site.com/resources" {:body "hello"})
Got some inspiration from clj-http. I'm trying to keep the API as compatible as possible. Some more inspiration from httpurr to use protocols for multiple clients.
Released under the MIT License