Skip to content

axiosvshttp-2

MIT 267 16 108,987
427.4 million (month) Aug 29 2014 1.15.0(2026-04-08 16:09:38 ago)
908 6 2 MIT
Sep 25 2013 183.8 thousand (month) 1.1.3(2026-03-05 00:04:35 ago)

axios is a popular JavaScript library that allows you to make HTTP requests from a Node.js environment. It is a promise-based library that works in both the browser and Node.js. It is similar to the Fetch API, but with a more powerful feature set and better browser compatibility.

One of the main benefits of using axios is that it automatically transforms the response data into a JSON object, making it easy to work with.

Axios is known for user-friendly API and support for asynchronous async/await syntax making it very accessible in web scraping.

Pure Ruby, framework and transport agnostic, implementation of HTTP/2 protocol and HPACK header compression with support for:

  • Binary framing parsing and encoding
  • Stream multiplexing and prioritization
  • Connection and stream flow control
  • Header compression and server push
  • Connection and stream management
  • And more... see API docs

Protocol specifications:

  • Hypertext Transfer Protocol Version 2 (RFC 7540)
  • HPACK: Header Compression for HTTP/2 (RFC 7541)

Highlights


http2

Example Use


```javascript // axios can be used with promises: axios.get('http://httpbin.org/json') .then(response => { console.log(response.data); }) .catch(error => { console.log(error); }); // or async await syntax: var resp = await axios.get('http://httpbin.org/json'); console.log(resp.data); // to make requests concurrently Promise.all function can be used: const results = await Promise.all([ axios.get('http://httpbin.org/html'), axios.get('http://httpbin.org/html'), axios.get('http://httpbin.org/html'), ]) // axios also supports other type of requests like POST and even automatically serialize them: await axios.post('http://httpbin.org/post', {'query': 'hello world'}); // or formdata const data = {name: 'John Doe', email: 'johndoe@example.com'}; await axios.post('https://jsonplaceholder.typicode.com/users', querystring.stringify(data), { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } } ); // default values like headers can be configured globally axios.defaults.headers.common['User-Agent'] = 'webscraping.fyi'; // or for session instance: const instance = axios.create({ headers: {"User-Agent": "webscraping.fyi"}, }) ```
```ruby require 'http/2' # GET request client = HTTP2::Client.new response = client.get("https://httpbin.org/get") puts response.body # POST reuqest data = { name: "value" } response = client.post("https://www.example.com", data) ```

Alternatives / Similar


Was this page helpful?