Skip to content

em-http-request

1,210 4 18 MIT
1.1.7 (31 Aug 2020) Oct 25 2009 212.7 thousand (month)

em-http-request is a Ruby gem for making asynchronous HTTP requests using EventMachine. It allows you to perform multiple requests simultaneously and handle the responses as they come in, rather than waiting for each request to complete before making the next one.

In short it supports: - Asynchronous HTTP API for single & parallel request execution - Keep-Alive and HTTP pipelining support - Auto-follow 3xx redirects with max depth - Automatic gzip & deflate decoding - Streaming response processing - Streaming file uploads - HTTP proxy and SOCKS5 support - Basic Auth & OAuth - Connection-level & global middleware support - HTTP parser via http_parser.rb - Works wherever EventMachine runs: Rubinius, JRuby, MRI

Example Use


EventMachine.run {
  http = EventMachine::HttpRequest.new('http://google.com/').get :query => {'keyname' => 'value'}

  # add callback for errors:
  http.errback { p 'Uh oh'; EM.stop }

  # add callback for successful requests
  http.callback {
    p http.response_header.status
    p http.response_header
    p http.response

    EventMachine.stop
  }
}

Alternatives / Similar


5,444 2.7.4 (a month ago) Dec 19 2009 compare
697 2.8.3 (6 years ago) Jul 25 2009 compare
1,122 0.99.0 (20 days ago) Oct 31 2009 compare
5,644 0.21.0 (a month ago) Jul 25 2009 compare
3,989 1.4.0 (2 years ago) Oct 06 2009 compare
872 0.11.0 (2 years ago) Sep 25 2013 compare
505 1.1.4 (3 years ago) Apr 20 2010 compare
2,907 0.12.0 (5 years ago) Mar 20 2015 compare

Other Languages

49,097 2.28.2 (a month ago) Feb 14 2011 compare
8,082 3.3.0 (a month ago) Dec 28 2012 compare
98,234 1.2.2 (a month ago) Aug 29 2014 compare
got
12,497 12.5.3 (2 months ago) Mar 27 2014 compare
13,292 3.8.4 (11 days ago) Jul 26 2019 compare
16,224 8.0.6 (2 months ago) Aug 22 2011 compare
1,567 3.2.0 (3 months ago) Dec 11 2011 compare
10,106 0.23.3 (a month ago) Jul 26 2019 compare
949 7.45.2 (2 months ago) Feb 25 2003 compare
966 1.4.4 (9 months ago) May 06 2012 compare
1,387 1.0.3 (1 year, 4 months ago) Nov 22 2014 compare
22,372 7.5.0 (5 months ago) Nov 14 2011 compare
383 18.1.0 (6 months ago) Aug 06 2011 compare
1,687 v6.2.6 (24 days ago) Apr 28 2019 compare
94 1.3 (1 year, 3 months ago) Nov 09 2016 compare
552 22.2.0 (1 year, 15 days ago) Dec 28 2012 compare
req
3,073 v3.32.1 (2 days ago) Aug 21 2022 compare
7,360 v2.7.0 (1 year, 3 months ago) Jan 25 2018 compare
3,501 v2.0.5 (4 months ago) Oct 06 2013 compare
1,897 1.2.1 (10 months ago) Nov 11 2011 compare
1,733 0.3.2 (3 years ago) Apr 14 2012 compare
145 2.2.4 (2 years ago) Dec 22 2019 compare