Parallel processing requests in Javascript with async/await
Nov 1 · 3 min read
Recently I was working on a Chrome extension that needed to make a few hundred fetch requests and then use the responses in further actions.
There are a few ways you can handle this. You can simply use await to fetch URLs one after the other and go over the list of URLs.


