A ClojureScript HTTP library.
Via Clojars: http://clojars.org/cljs-http
(ns example.core
(:require-macros [cljs.core.async.macros :refer [go]])
(:require [cljs-http.client :as http]
[cljs.core.async :refer [<!]]))
(go (let [response (<! (http/get "https://api.github.com/users" {:with-credentials? false}))]
(prn (:status response))
(prn (map :login (:body response)))))
Copyright (C) 2012-2013 Roman Scherer
Distributed under the Eclipse Public License, the same as Clojure.