Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Fetch vs axios
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Android 10; Mobile; rv:120.0) Gecko/120.0 Firefox/120.0
Browser:
Firefox Mobile 120
Operating system:
Android
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
fetch
2273.1 Ops/sec
axios
1273.0 Ops/sec
HTML Preparation code:
<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);