You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/rules/no-await-in-loop.md
+93-18
Original file line number
Diff line number
Diff line change
@@ -5,35 +5,67 @@ rule_type: problem
5
5
6
6
7
7
Performing an operation on each element of an iterable is a common task. However, performing an
8
-
`await` as part of each operation is an indication that the program is not taking full advantage of
8
+
`await` as part of each operation may indicate that the program is not taking full advantage of
9
9
the parallelization benefits of `async`/`await`.
10
10
11
-
Usually, the code should be refactored to create all the promises at once, then get access to the
12
-
results using `Promise.all()`. Otherwise, each successive operation will not start until the
11
+
Often, the code can be refactored to create all the promises at once, then get access to the
12
+
results using `Promise.all()` (or one of the other [promise concurrency methods](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#promise_concurrency)). Otherwise, each successive operation will not start until the
13
13
previous one has completed.
14
14
15
-
Concretely, the following function should be refactored as shown:
15
+
Concretely, the following function could be refactored as shown:
16
16
17
17
```js
18
18
asyncfunctionfoo(things) {
19
19
constresults= [];
20
20
for (constthingof things) {
21
21
// Bad: each loop iteration is delayed until the entire asynchronous operation completes
22
-
results.push(awaitbar(thing));
22
+
results.push(awaitdoAsyncWork(thing));
23
23
}
24
-
returnbaz(results);
24
+
return results;
25
25
}
26
26
```
27
27
28
28
```js
29
29
asyncfunctionfoo(things) {
30
-
constresults= [];
30
+
constpromises= [];
31
31
for (constthingof things) {
32
32
// Good: all asynchronous operations are immediately started.
33
-
results.push(bar(thing));
33
+
promises.push(doAsyncWork(thing));
34
34
}
35
35
// Now that all the asynchronous operations are running, here we wait until they all complete.
36
-
returnbaz(awaitPromise.all(results));
36
+
constresults=awaitPromise.all(promises);
37
+
return results;
38
+
}
39
+
```
40
+
41
+
This can be beneficial for subtle error-handling reasons as well. Given an array of promises that might reject,
42
+
sequential awaiting puts the program at risk of unhandled promise rejections. The exact behavior of unhandled
43
+
rejections depends on the environment running your code, but they are generally considered harmful regardless.
44
+
In Node.js, for example, [unhandled rejections cause a program to terminate](https://nodejs.org/api/cli.html#--unhandled-rejectionsmode) unless configured otherwise.
0 commit comments