2021-10-26
1542
#js libraries#react#vanilla javascript
Ejiro Asiuwhu
73744
Oct 26, 2021 â‹… 5 min read

Using axios.all to make concurrent requests

Ejiro Asiuwhu Software engineer with a drive for building highly scalable and performant web applications. Heavily interested in module federation, micro frontends, state machines, TDD, and system designs. Big on web performance and optimization, advanced component design patterns, a11y, SSR, SSG, ISR, and state management. Expert at crafting highly reusable TypeScript-heavy component libraries.

Recent posts:

Query strings are underrated: Using the URL as your app’s state container

Query strings are often overlooked as a way to manage app state, but they can make your React apps more shareable, persistent, and simple. This guide walks through the tools, trade-offs, and best practices for using query strings effectively.

Amazing Enyichi Agu
Sep 29, 2025 â‹… 3 min read
yes, you should upgrade to TypeScript 5.9 — here's why

Yes, you should upgrade to TypeScript 5.9 — here’s why

Explore the key features of TypeScript 5.9, including the redesigned tsc –init command, the new import defer syntax, expandable hovers, and significant performance improvements.

Chizaram Ken
Sep 29, 2025 â‹… 6 min read

Is Better Auth the key to solving authentication headaches?

Better Auth is an open-source, TypeScript-first auth library with adapters, schema generation, and a plugin system. Here’s how it works and how it stacks up to Clerk, NextAuth, and Auth0.

David Omotayo
Sep 26, 2025 â‹… 10 min read
What using a screen reader taught me about real web accessibility

What using a screen reader taught me about real web accessibility

Read one developer’s detailed account of using a screen reader to learn more about a11y and build more accessible websites.

Sebastian Weber
Sep 25, 2025 â‹… 29 min read
View all posts

3 Replies to "Using <code>axios.all</code> to make concurrent requests"

  1. Thanks a lot, Ejiro, for all this. It was extremely helpful. One thing I cannot figure, though: is there a way to temporize between requests of the Promise.all ? (I need to make thousands of requests at a time to my server and don’t want to block it.)

  2. This was a great explanation for Promise.all!

    I was wondering, do you thing you could elaborate on how to use async/await with Promise.all using your same example?

Leave a Reply