Promise
JavaScript
Promise
TypeScript
WorkerPool
async
async/await
asynchronous processing
concurrent processing
parallel processing
worker pool
There are times when you have many tasks that you want to process in parallel, but executing all of them in parallel would be too heavy, so you want to specify the number of tasks to be executed concurrently. I am ashamed to admit that I d…
I have been using JavaScript's async/await for some reason with a vague understanding, and when it didn't work, I would use Promise. However, recently I have been seeing async/await being used more and more often, so I started to think tha…