Test name | Executions per second |
---|---|
axios | 14482.4 Ops/sec |
fetch | 23660.1 Ops/sec |
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
const url = "https://jsonplaceholder.typicode.com/todos";
axios.get(url)
.then((response) => console.log(response.data));
const url = "https://jsonplaceholder.typicode.com/todos";
fetch(url)
.then((response) => response.json())
.then((data) => console.log(data));