Run details:
Mozilla/5.0 (Android 10; Mobile; rv:120.0) Gecko/120.0 Firefox/120.0
Firefox Mobile 120
Android
Mobile
one year ago
Test name Executions per second
fetch 2273.1 Ops/sec
axios 1273.0 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
Tests:
  • fetch

     
    fetch('https://api.surfskip.com')
      .then(response => response.json())
      .then(console.log)
  • axios

     
    axios.get('https://api.surfskip.com')
      .then((response) => response.json())
      .then(console.log);