Contribution activity and bus factor of axios/axios

Evolving

Contribution activity is growing

Activity badge for axios/axios repository

Why axios/axios is evolving?

The result is based on ratio of number of commits and code additions from initial and final time ranges.

Initial time range – from 5 Jul, 2023 to 5 Oct, 2023

Final time range – from 5 Apr, 2024 to 5 Jul, 2024

From 2 to 1 commits per week
-50%
From 66 to 426 additions per week
545%
From 20 to 198 deletions per week
890%
Data calculated on 5 Jul, 2024

Bus factor of axios/axios

What is Bus factor?

It is basically a number of most active contributors responsible for 80% of contributions.

Bus factor tries to assess "What happens if a key member of the team is hit by a bus?". The more there are key members, the lower the risk.

The axios/axios repository has a bus factor of 133.

Low risk, knowledge is well distributed among the team members

Bus factor was measured on 14 Aug 2024

133

Repository summary

Axios is a widely used, promise-based HTTP client for the browser and Node.js. It features both easy-to-use API and ability to customize for complex requests. Here are some key features that makes Axios an excellent tool:

  • Make XMLHttpRequests from the browser.
  • Make HTTP requests from node.js.
  • Supports the Promise API.
  • Intercept request and response.
  • Transform request and response data.
  • Cancel requests.
  • Automatic transforms for JSON data.
  • Supports browser progress events.

How to Install

For use with Node.js, it can be installed via NPM. npm install axios For use in a browser environment, a script tag can be added as follows. html <script src=\"https://unpkg.com/axios/dist/axios.min.js\"></script>

Basic Usage

The basic API usage for making a GET request with Axios is as follows. ```javascript const axios = require('axios');

axios.get('https://api.github.com/users/mapbox') .then((response) => { console.log(response.data); console.log(response.status); console.log(response.statusText); console.log(response.headers); console.log(response.config); }); ``` Overall, Axios is a convenient tool for making HTTP requests, providing a more flexible interface for advanced HTTP requests.

Recently added projects

Activity badge for toptal/picasso repository

Updated on 14 Aug 2024

Activity badge for ixartz/Next-js-Boilerplate repository

Updated on 14 Aug 2024

Activity badge for LouisShark/chatgpt_system_prompt repository

Updated on 14 Aug 2024

Activity badge for linexjlin/GPTs repository

Updated on 14 Aug 2024

Activity badge for asdf-vm/asdf-nodejs repository

Updated on 14 Aug 2024

Top 5 contributors of axios/axios

ContributorCommits
347
220
181
105
29