Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36 OPR/85.0.4341.68
Opera 85
Windows
Desktop
2 years ago
Test name Executions per second
axios 3853.1 Ops/sec
fetch 3501.7 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
Tests:
  • axios

    x
     
    const url = "https://jsonplaceholder.typicode.com/todos";
    axios.get(url)
    .then((response) => console.log(response.data));
  • fetch

     
    const url = "https://jsonplaceholder.typicode.com/todos";
    fetch(url)
      .then((response) => response.json())
      .then((data) => console.log(data));