loaders
loaders copied to clipboard
ECMAScript Modules Loaders
## Time **UTC Tue 02-Aug-2022 18:00 (06:00 PM)**: | Timezone | Date/Time | |---------------|-----------------------| | US / Pacific | Tue 02-Aug-2022 11:00 (11:00 AM) | | US / Mountain |...
Extracting these ideas into a separate thread, since #94 is not focused on the challenges of using the helper functions in multiple loaders. https://github.com/nodejs/loaders/pull/94#issuecomment-1184846638 > You could use them in...
I started writing a design doc for the helper functions we’re considering adding, to help people reimplement only small portions of hooks (see [README](https://github.com/nodejs/loaders)). The idea is that if someone...
Since Node.js has no official way of notifying package authors of incoming breaking changes, and Loaders has had and likely will have a couple more before stability, I'll post incoming...
This is a potential gotcha I have on my to-do list to ask about. Loaders cannot block their own thread with `import.meta.resolve` calls, so that will somehow need to be...
With chained loaders being considered as part of this effort, it might become pretty unruly for large apps to benefit from using loaders to help shore up some of the...
Vitest
In the recent collaborator summit, one thing that many people mentioned as a blocker for ESM migration was Jest support for ESM. I noticed that [Vitest](https://vitest.dev/) claims to be both...
It seem that chaining hooks replace defaultLoad | defaultResolve with next handle , which make it's not possible access defaultLoad and defaultResolve, which is useful for some case. I'm wondering...
When loaders are moved off the main thread, what will happen if the loader thread crashes / terminates? Could be due to an uncaught error, code erroneously calling `process.exit()`, or...
Service Workers are different. They are registered by a script. But restarting/reloading the app with a service worker in control will intercept requests. This incudes requests for `import` A Service...