Skip to content

Commit 8e978bd

Browse files
dario-piotrowiczaduh95
authored andcommitted
doc: clarify cjs/esm diff in queueMicrotask() vs process.nextTick()
the section comparing `queueMicrotask()` and `process.nextTick()` doesn't address the different scheduling behavior that the two functions have in cjs and esm modules, the section's introductory mjs example also provides an incorrect output, the changes here address such by explaining the difference between the two module types and updating the example accordingly PR-URL: #56659 Fixes: #45048 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent ae360c3 commit 8e978bd

File tree

1 file changed

+22
-16
lines changed

1 file changed

+22
-16
lines changed

doc/api/process.md

+22-16
Original file line numberDiff line numberDiff line change
@@ -2993,34 +2993,40 @@ function definitelyAsync(arg, cb) {
29932993
29942994
### When to use `queueMicrotask()` vs. `process.nextTick()`
29952995
2996-
The [`queueMicrotask()`][] API is an alternative to `process.nextTick()` that
2997-
also defers execution of a function using the same microtask queue used to
2998-
execute the then, catch, and finally handlers of resolved promises. Within
2999-
Node.js, every time the "next tick queue" is drained, the microtask queue
2996+
The [`queueMicrotask()`][] API is an alternative to `process.nextTick()` that instead of using the
2997+
"next tick queue" defers execution of a function using the same microtask queue used to execute the
2998+
then, catch, and finally handlers of resolved promises.
2999+
3000+
Within Node.js, every time the "next tick queue" is drained, the microtask queue
30003001
is drained immediately after.
30013002
3003+
So in CJS modules `process.nextTick()` callbacks are always run before `queueMicrotask()` ones.
3004+
However since ESM modules are processed already as part of the microtask queue, there
3005+
`queueMicrotask()` callbacks are always exectued before `process.nextTick()` ones since Node.js
3006+
is already in the process of draining the microtask queue.
3007+
30023008
```mjs
30033009
import { nextTick } from 'node:process';
30043010

3005-
Promise.resolve().then(() => console.log(2));
3006-
queueMicrotask(() => console.log(3));
3007-
nextTick(() => console.log(1));
3011+
Promise.resolve().then(() => console.log('resolve'));
3012+
queueMicrotask(() => console.log('microtask'));
3013+
nextTick(() => console.log('nextTick'));
30083014
// Output:
3009-
// 1
3010-
// 2
3011-
// 3
3015+
// resolve
3016+
// microtask
3017+
// nextTick
30123018
```
30133019
30143020
```cjs
30153021
const { nextTick } = require('node:process');
30163022

3017-
Promise.resolve().then(() => console.log(2));
3018-
queueMicrotask(() => console.log(3));
3019-
nextTick(() => console.log(1));
3023+
Promise.resolve().then(() => console.log('resolve'));
3024+
queueMicrotask(() => console.log('microtask'));
3025+
nextTick(() => console.log('nextTick'));
30203026
// Output:
3021-
// 1
3022-
// 2
3023-
// 3
3027+
// nextTick
3028+
// resolve
3029+
// microtask
30243030
```
30253031
30263032
For _most_ userland use cases, the `queueMicrotask()` API provides a portable

0 commit comments

Comments
 (0)