-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESM loader hooks in Workers no longer working since Node.js 22.2 #53097
Comments
This comment was marked as off-topic.
This comment was marked as off-topic.
/cc @nodejs/loaders @dygabo |
this behaviour changed indeed with #52706. Passing Please add the customization hook to the main thread and this will affect all created workers as described here.
and the application start will be: the customization hooks chain will be as mentioned the same on all threads and the output will be something like:
|
This comment was marked as outdated.
This comment was marked as outdated.
In all fairness, this seems like a breaking change, especially since this feature is in the Release Candidate stage. I wouldn't expect such a drastic change in behavior, particularly in a minor release. For us, the Angular CLI, this is quite a breaking change because in some of our workers, we want different resolutions, which differs from the main thread and that of other workers. We could surely do some workarounds, but it was very convenient that workers supported custom ESM hooks separate from the main thread. If this is the intended and desired behavior, IMHO, it should be implemented in a major release to comply with semantic versioning. |
#52706 fixed a longstanding bug: #50752. We knew that this fix might surprise or break people, which is why we were waiting to fix this before making the API stable (and we still haven’t, in case any further issues arise). This is the point of the Release Candidate stage: to identify and fix issues like this. I’m sorry that this change has inconvenienced you, but this is why we have experimental features and why they need to be allowed to change. If we couldn’t fix this bug until October with Node 23, and then we couldn’t backport the fix to the LTS lines, it would be April 2025 before a stable hooks API would be available on an LTS line. Many users are eager for this API to become stable so that they can rely on it, and stretching it out over years inconveniences them for the dubious benefit of protecting early adopters who knew what they were getting into by relying on an experimental API. We prioritize the larger group of users seeking stability over the early adopters. |
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
… Node.js 22.2.0 and later Node.js 22.2.0 introduced a breaking change affecting custom ESM resolution. For more context, see: [Node.js issue #53097](nodejs/node#53097) Closes: #53097
This update ensures that we can test prerendering with the ESM loader breaking change. For more details, see: nodejs/node#53097
FYI there are discussions for reverting that change. The discussion about that can continue in the other issue, marking this one as duplciate. Duplicate of #53182 |
Version
v22.2.0
Platform
Linux 6.6.15-2rodete2-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.6.15-2rodete2 (2024-03-19) x86_64 GNU/Linux
Subsystem
No response
What steps will reproduce the bug?
Since Node.js version 22.2, ESM loader hooks no longer function inside of a worker and the Node.js application becomes unresponsive.
app.js
hooks.mjs
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior? Why is that the expected behavior?
What do you see instead?
Application becomes unresponsive.
Additional information
I suspect that this is caused by #52706
The text was updated successfully, but these errors were encountered: