Hacker News new | ask | show | jobs
by igemnace 1526 days ago
Just because you use async/await doesn't mean you can't use Promise.all.

In fact, my immediate intuition with the await examples was to parallelize with Promise.all.

    await Promise.all([/* build promises */]);
1 comments

Yeah they had that in the post.