Test name | Executions per second |
---|---|
fetch | 7474.0 Ops/sec |
axios | 3814.9 Ops/sec |
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
fetch('https://api.surfskip.com')
.then(response => response.json())
.then(console.log)
axios.get('https://api.surfskip.com')
.then((response) => response.json())
.then(console.log);