TLDR: Use for...of
instead of forEach()
in asynchronous code.
For legacy browsers, use for...i
or [].reduce()
To execute the promises in parallel, use Promise.all([].map(...))
HTML 1 hr 1 min βββββββββββββββββββββ 94.0% | |
TOML 2 mins βββββββββββββββββββββ 3.6% | |
MDX 1 min βββββββββββββββββββββ 1.9% | |
Markdown 0 secs βββββββββββββββββββββ 0.5% |
Note:
When this guide is more complete, the plan is to move it into Prepack documentation.
For now I put it out as a gist to gather initial feedback.
If you're building JavaScript apps, you might already be familiar with some tools that compile JavaScript code to equivalent JavaScript code: