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); 
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    fetch
    axios

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0
Firefox 115 on Windows
View result in a separate tab
Test name Executions per second
fetch 7474.0 Ops/sec
axios 3814.9 Ops/sec