Test name | Executions per second |
---|---|
xhr | 12596.5 Ops/sec |
fetch | 11398.0 Ops/sec |
axios | 8784.7 Ops/sec |
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://www.googleapis.com/discovery/v1/apis');
xhr.onload = () => JSON.parse(xhr.responseText);
xhr.send();
fetch('https://www.googleapis.com/discovery/v1/apis')
.then(response => response.json());
axios.get('https://www.googleapis.com/discovery/v1/apis')
.then((response) => response.json());