You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,21 @@ A Clojure HTTP library similar to [clj-http](http://github.com/dakrone/clj-http)
16
16
17
17
## Differences from clj-http
18
18
19
-
- Instead of Apache HTTP client, clj-http-lite uses HttpURLConnection
19
+
- Instead of Apache HttpClient, clj-http-lite uses HttpURLConnection
20
20
- No automatic JSON decoding for response bodies
21
21
- No cookie support
22
22
- No proxy-ing DELETEs with body
23
23
- No multipart form uploads
24
24
- No persistent connection support
25
25
- namespace rename clj-http.* -> clj-http.lite.*
26
26
27
+
## History
28
+
29
+
- Sep 2011 - [dakrone/clj-http](https://github.com/dakrone/clj-http) created (and is still actively maintained)
30
+
- Feb 2012 - [hiredman/clj-http-lite](https://github.com/hiredman/clj-http-lite) (now archived) forked from `dakrone/clj-http` to use Java's HttpURLConnection instead of Apache HttpClient.
31
+
- Jul 2018 - `martinklepsch/clj-http-lite` forked from `hiredman/clj-http-lite` for new development and maintenance
32
+
- Nov 2021 - Martin transfered his fork to `clj-commons/clj-http-lite` so it could get the ongoing love it needs from the Clojure community
33
+
27
34
## Usage
28
35
29
36
The main HTTP client functionality is provided by the
0 commit comments