loaders icon indicating copy to clipboard operation
loaders copied to clipboard

ECMAScript Modules Loaders

Results 74 loaders issues
Sort by recently updated
recently updated
newest added

The future (and hopefully very near future) way to achieve performative module script loading will likely come in the form of implementing “worklet infrastructure” in core since it does not...

I'm trying to best understand what a user's and tool author's experiences will be in the future when: a) users write a project in pure ESM with package.json `"type": "module"`...

During the [September meeting](https://github.com/nodejs/loaders/blob/main/doc/meetings/2021-09-21.md) I mentioned how we would benefit from having a way to tell Node how to load package.json files, as in our case they don't necessarily exist...

@GeoffreyBooth I hope it was something like this you were referring to as design doc :-). It's not really a ready-made design proposal at this point but more a description...

Today it is possible to alter the resolve algorithm to some extent using `--experimental-specifier-resolution`. However that switch only supports a couple of fixed use-cases and is not available programmatically within...

Posting here as spillover from the discussion in https://github.com/nodejs/node/pull/40708 where it's been justifiably blocked for Node.js to define the "deno" condition in its documentation. As a result there is a...

As a practical example, let's say that we have: **/node_modules/foo/package.json** ```json { "name": "foo", "exports": { "./utils": "./sources/utils" } } ``` **/node_modules/foo/sources/utils.ts** ```ts // Content doesn't matter ``` **/index.js** ```ts...

the thread of https://twitter.com/bradleymeck/status/1454093832539320325 pointed out with the consolidation of hooks that the provided during the fetching of a resource body from a URL no longer is automated by the...

Here's a draft of what solution I can think of regarding relations between loaders and import assertions. Relation of `ESMLoader` class with import assertions: | Before `resolve()` | `resolve()` |...

I see in the [use cases](https://github.com/nodejs/loaders/blob/main/doc/use-cases.md#use-cases) documentation that it mentions hot reloading as a use case that you're hoping to support - is there a proposal for how that would...