axios vs. fetch

Benchmark created on


Preparation HTML

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
axios
axios.get('https://www.googleapis.com/discovery/v1/apis')
  .then((response) => response.data); 
ready
fetch
fetch('https://www.googleapis.com/discovery/v1/apis')
  .then(response => response.json());
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.