René's URL Explorer Experiment


Title: Proposal: new `vm` module primitives & loader API for ESM customization · Issue #62720 · nodejs/node · GitHub

Open Graph Title: Proposal: new `vm` module primitives & loader API for ESM customization · Issue #62720 · nodejs/node

X Title: Proposal: new `vm` module primitives & loader API for ESM customization · Issue #62720 · nodejs/node

Description: This proposes new vm module primitives that aim to replace the existing vm.SourceTextModule and provide a high-level loader API for ESM (specifically SourceTextModule) loading customization. Consider this a very early draft for discussio...

Open Graph Description: This proposes new vm module primitives that aim to replace the existing vm.SourceTextModule and provide a high-level loader API for ESM (specifically SourceTextModule) loading customization. Consid...

X Description: This proposes new vm module primitives that aim to replace the existing vm.SourceTextModule and provide a high-level loader API for ESM (specifically SourceTextModule) loading customization. Consid...

Opengraph URL: https://github.com/nodejs/node/issues/62720

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Proposal: new `vm` module primitives \u0026 loader API for ESM customization","articleBody":"This proposes new vm module primitives that aim to replace the existing `vm.SourceTextModule` and provide a high-level loader API for ESM (specifically `SourceTextModule`) loading customization. \n\nConsider this a very early draft for discussion. This is mostly to investigate whether a new design can addresses the existing issues. I am not 100% it's implementable yet, especially the loader customization part, but it's better to discuss what design would help developers before we think about what is easier to implement.\n\nThere'll be a session about this new design at the collaboration summit too https://github.com/openjs-foundation/summit/issues/482\n\n## Background\n\nThe `vm` module APIs have been behind `--experimental-vm-modules` for a long time. There was a [tracking issue](https://github.com/nodejs/node/issues/37648) about their stabilization and accumulated several issues over the years.\n\nThe meaningful current users are concentrated in test tooling (Jest, Vitest). Recently there has been renewed momentum to look into what it takes to bring the API out of the experimental status. @legendecas and I have been adding some non-breaking changes e.g. `linkRequests()`, `instantiate()`, `moduleRequests`, `hasTopLevelAwait()`, `hasAsyncGraph()`, conditionally synchronous `evaluate()` so that it now provides capabilities required to implement something similar to how ESM is handled in the built-in loader - specifically, the linking process can be driven by those who construct the `SourceTextModule` instead of being driven from a `link` method with callbacks, and it can be conditionally synchronous as the spec allows. But it has become awkward to keep piling methods on the existing classes to do things differently without breaking the API.\n\nThere are still a few issues with the current design:\n\n1. The `importModuleDynamically` and `initializeImportMeta` callbacks are passed as options to the module constructors, requiring careful memory management to avoid leaks when callbacks capture over referrers ([#33439](https://github.com/nodejs/node/issues/33439), [#50113](https://github.com/nodejs/node/issues/50113), [#59118](https://github.com/nodejs/node/issues/59118)), or use-after-free when remote code calls `import()` indirectly via a closure ([#47096](https://github.com/nodejs/node/issues/47096)). We've addressed for the main context with a [very intricate memory management scheme](https://joyeecheung.github.io/blog/2023/12/30/fixing-nodejs-vm-apis-1/), but for new contexts it's uncertain. The current implementation works but is not very GC-efficient, and this issue may not have existed in the first place if the callbacks are managed differently.\n2. `evaluate()` mixes loader errors (status errors, timeout) with module evaluation errors in a single promise rejection, making it hard to handle them differently ([#60242](https://github.com/nodejs/node/issues/60242)).\n3. Many users have expressed that the current API still requires too much plumbing if they only need partial customization. ([#31234](https://github.com/nodejs/node/issues/31234), [#35848](https://github.com/nodejs/node/issues/35848), [#43899](https://github.com/nodejs/node/issues/43899)).\n\nIt seems better to consolidate the changes into a new API rather than continuing to pile onto the existing interface, while we can still steer the design during the experimental phase.\n\n## A draft for a new API\n\nThe new API can live in a `'vm/modules'` module and exports `SourceTextModule`, `SyntheticModule`, and `SourceTextModuleLoader`.\n\n### Core idea\n\nProvide a `SourceTextModuleLoader` abstraction that users can subclass and override high-level processes they want to customize ([#43899](https://github.com/nodejs/node/issues/43899)). This loader can be used standalone, or registered in a given context:\n\n- `dynamicImport(request, context, parent)`\n- `importMeta(meta, context, parent)`\n- `getModules(requests, context, parent)` (resolving and linking a batch of modules for a set of import requests)\n\nIn this model, `SourceTextModule` and `SyntheticModule` are primitives of the loader.\n\nWhen registered for a given context, the loader is responsible for resolving ESM requests, handling dynamic `import()`, and initializing `import.meta`. Instead of one callback per module, there is one loader per context.\n\nNote that this means once there's a loader registered, the internals have to wrap several constructs to be a publically accessible shape e.g. wrapping actual context into vm Context. So it can take a bit of refactoring and adds overhead, but should be managable.\n\nThis is separate from `module.registerHooks()` which installs low-level hooks into built-in resolution/loading process for all types of modules - consider the hooks run underneath `super.getModules()`/`super.dynamicImport()` etc. as shown below, so they operate in a different layer. `SourceTextModuleLoader` is a higher level customization, and as the name implies, is specifically for handling `SourceTextModule`s - `SyntheticModule` does not have `import()` or `import.meta` or load other modules, so they are not applicable to the customization.\n\n### 1. Full customization\n\n```js\nimport {\n  SourceTextModule,\n  SyntheticModule,\n  SourceTextModuleLoader,\n} from 'vm/modules';\n\n// Names starting with `helper` are only for this example,\n// they are not part of the API.\nclass ExampleModuleLoader extends SourceTextModuleLoader {\n  #sourceStore = new Map();\n  #moduleCache = new Map();\n\n  // Invoked by Node.js to perform dynamic import(), overrides default.\n  dynamicImport(request, context, parent) {\n    const mod = this.helperGetSingleModule(request, context, parent);\n    mod.evaluate();\n    // topLevelCapability does not need to fulfill here.\n    // That promise will just be forwarded to the code actually\n    // awaiting the dynamic import().\n    return mod.namespace();\n  }\n\n  // Invoked by Node.js to initialize import.meta, overrides the default.\n  importMeta(meta, context, parent) {\n    // Objects attached to import.meta should typically be created\n    // in the target context via vm.runInContext() or similar.\n    meta.identifier = parent.identifier;\n  }\n\n  // Invoked by Node.js to resolve and compile modules for a set of\n  // import requests. The returned array must correspond 1:1 to the\n  // requests array.\n  // TODO: it's unclear whether getModules or getModule would work better\n  // for the internal way of resolving modules - supposedly batching helps\n  // with performance, but it also leaks internal ordering choices.\n  getModules(requests, context, parent) {\n    const result = [];\n    for (const { specifier } of requests) {\n      // Consult the custom cache first.\n      const cached = this.#moduleCache.get(specifier);\n      if (cached) { result.push(cached); continue; }\n\n      // Use the custom source store.\n      const source = this.#sourceStore.get(specifier);\n      if (!source) {\n        throw new Error('module not found');\n      }\n\n      const identifier = specifier;\n      const mod = new SourceTextModule(source, { identifier, context });\n\n      // Recursively get dependencies (DFS; users can implement BFS too).\n      const modules = this.getModules(mod.requests, context, mod);\n      mod.link(modules);\n\n      this.#moduleCache.set(specifier, mod);\n      result.push(mod);\n    }\n    return result;\n  }\n\n  // --- Example helpers (not part of the API) ---\n\n  helperGetSingleModule(request, context, parent) {\n    return this.getModules([request], context, parent)[0];\n  }\n\n  helperAddSource(identifier, source) {\n    this.#sourceStore.set(identifier, source);\n  }\n\n  helperAddBuiltin(identifier, mapping) {\n    const keys = Object.keys(mapping);\n    const mod = new SyntheticModule(keys, function() {\n      for (const key of keys) {\n        this.setExport(key, mapping[key]);\n      }\n    });\n    this.#moduleCache.set(identifier, mod);\n  }\n}\n```\n\nPreparing the custom loader:\n\n```js\nconst loader = new ExampleModuleLoader();\n\n// If the loader needs to fetch the source asynchronously,\n// they can pre-fetch the whole graph from a known root,\n// so later when `getModules()` is run, it just loads from the\n// asynchronously prefetched graph synchronously  and sets up\n// the links. This is similar to what Node.js internally does.\nloader.helperAddSource('async-root', `\n  export { foo } from 'foo';\n  export let bar;\n  bar = await import('builtin:bar') + import.meta.identifier;\n`);\n\nloader.helperAddSource('sync-root', `\n  export { foo } from 'foo';\n  import { default as bar } from 'builtin:bar';\n  export const baz = bar + import.meta.identifier;\n`);\n\nloader.helperAddSource('foo', `\n  export const foo = globalThis.foo;\n`);\n\nloader.helperAddBuiltin('builtin:bar', { default: 'bar' });\n```\n\n#### 1.a. Async module graph in a new context\n\n```js\nimport { createContext } from 'node:vm';\nconst context = createContext({ foo: 'foo' });\n\nconst [mod] = loader.getModules([{ specifier: 'async-root' }], context);\n\n// returns undefined or throws for any loader errors.\nmod.evaluate();\n\nmod.hasTopLevelAwait();  // true\nmod.hasAsyncGraph();  // true\n\nmod.namespace();  // { foo: .., bar: ... } - not yet populated\n\n// Module completion is tracked separately via topLevelCapability,\n// so it's what you await to finish evaluation of the module.\nawait mod.topLevelCapability;\nmod.namespace();  // { foo: 'foo', bar: 'barasync-root' }\n```\n\n#### 1.b. Synchronous require(esm) pattern\n\nSee [#59656](https://github.com/nodejs/node/issues/59656) for this use case.\n\n```js\nconst [mod] = loader.getModules([{ specifier: 'sync-root' }], context);\n\nmod.evaluate();  // returns undefined or throws for any loader errors.\n\nmod.hasTopLevelAwait();  // false\nmod.hasAsyncGraph();  // false\nmod.topLevelCapability;  // Always fulfilled for non-TLA modules.\nmod.error;  // If the module threw during evaluation, the error is here.\nmod.namespace();  // { foo: 'foo', baz: 'barsync-root' }\n```\n\n### 2. Partial customization and registering globally\n\nA loader can delegate to the base class for specifiers it doesn't need to customize, and can be registered for a context so that all **ESM** running in that context (including `vm.Script` dynamic `import()`s) uses it.\n\n```js\nimport { SourceTextModuleLoader, SyntheticModule } from 'vm/modules';\nimport { createContext, runInContext } from 'node:vm';\n\nclass CustomLoader extends SourceTextModuleLoader {\n  getModules(requests, context, parent) {\n    return requests.map((req) =\u003e {\n      if (req.attributes?.type === 'foo') {\n        return new SyntheticModule(['foo'], function() {\n          this.setExport('foo', 'foo');\n        }, { context });\n      }\n      return super.getModules([req], context, parent)[0];\n    });\n  }\n  // Other methods are left to the default.\n}\n\nconst loader = new CustomLoader();\n\n// Register the loader for a vm context.\n// Only one loader can be registered per context.\nloader.register(context);\n\nconsole.log(\n  await runInContext(\n    `import('foo', { with: { type: 'foo' } })`,\n    context\n  )\n);  // { foo: 'foo' }\n\n// Unregister when done.\nloader.deregister(context);\n\n// Register for the main context.\nloader.register();\nconsole.log(await import('foo', { with: { type: 'foo' } }));\n```\n\n## Design details\n\n### Error model: loader errors vs. module errors\n\nSee [#60242](https://github.com/nodejs/node/issues/60242) for background.\n\nIn the current API, `evaluate()` wraps all errors (status errors, timeout, and actual module exceptions) into a single promise rejection. This makes it difficult to distinguish errors from the loader (implemented by e.g. a framework) from module-level errors (thrown from e.g. user-provided code being tested by a framework), and makes re-implementation of `require(esm)` awkward.\n\nIn the new API, `evaluate()` separates the two:\n\n- Synchronous throws for loader/infrastructure errors: wrong module status, timeout (`ERR_SCRIPT_EXECUTION_TIMEOUT`), signal interruption (`ERR_SCRIPT_EXECUTION_INTERRUPTED`).\n- Use `module.topLevelCapability` (maps to `CyclicModuleRecord.[[TopLevelCapability]]` in the spec) to access evaluation resolution or rejections\n- Use `module.error` to access `CyclicModuleRecord.[[EvaluationError]]` once it's evaluated.\n\n### Source phase imports\n\nModule requests carry phase information (`request.phase`). For source-phase static imports (`import source x from 'y'`), the module returned from `getModules()` must have a source object set via `mod.setSourceObject(obj)`. For dynamic source-phase imports (`import.source('y')`), `dynamicImport()` receives `request.phase === 'source'` and should return the source object (e.g., a `WebAssembly.Module`) instead of a namespace.\n\n```js\ndynamicImport(request, context, parent) {\n  const mod = this.helperGetSingleModule(request, context, parent);\n  if (request.phase === 'source') {\n    return mod.sourceObject;\n  }\n  mod.evaluate();\n  return mod.namespace();\n}\n```\n\nTODO: figure out what to do for deferred imports, but it'll be a phase as well.\n\n### One loader per context\n\nWhen a loader is registered for a context, it handles dynamic `import()` for all code evaluated in that context, including `vm.Script`. With the new design, omitting `importModuleDynamically` from a `vm.Script` should mean \"delegate to the context's registered loader if any, otherwise throw.\" This makes `loader.register(context)` a single point of configuration for all ESM loading in a given context.\n\nThe new `dynamicImport(request, context, parent)` callback receives the context as a parameter, so it can construct modules in the right context. This addresses the issue where `importModuleDynamically` for `vm.Script` didn't have context information ([#35714](https://github.com/nodejs/node/issues/35714)).\n\n`loader.register(context)` throws if a loader is already registered for that context. For users who want hooks-style middleware composition, `module.registerHooks(hooks, context)` is still a a separate, orthogonal mechanism that allow nesting, and it runs in a lower layer underneath the loader's `getModules()`/`dynamicImport()`.\n\n### Different level of customizations\n\nSee [#31234](https://github.com/nodejs/node/issues/31234), [#35848](https://github.com/nodejs/node/issues/35848), [#43899](https://github.com/nodejs/node/issues/43899) [#61127](https://github.com/nodejs/node/issues/61127).\n\nThe base `SourceTextModuleLoader` needs a meaningful default `getModules()` implementation for partial customization to work. The plan is to expose Node's built-in resolution and loading as composable functions (someting like `module.resolve(specifier, parentURL, context)` and `module.load(url, context)`) that the base `getModules()` use (see https://github.com/nodejs/node/pull/55756). This way:\n\n- Partial customizers call `super.getModules()` for requests they don't handle.\n- Advanced users can call `module.resolve` / `module.load` directly to implement their `getModules()` override, these in turn runs the hooks registered by `module.registerHooks()` and/or the built-in resolution/loading logic, so the hooks and the loader are composable in a flexible way.\n\n","author":{"url":"https://github.com/joyeecheung","@type":"Person","name":"joyeecheung"},"datePublished":"2026-04-13T16:48:33.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":16},"url":"https://github.com/62720/node/issues/62720"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:2d48a555-319a-77dd-6b7e-8363417e4428
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idEC18:20AD09:EE4DEC:1486106:6A4C9E07
html-safe-nonce09a8616e98f2a7592dc79e5d7cd4d17f01941dace4e73e2b6082ad87e2e02a46
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFQzE4OjIwQUQwOTpFRTRERUM6MTQ4NjEwNjo2QTRDOUUwNyIsInZpc2l0b3JfaWQiOiI2MzQ5MTQzMjYyMzE0MTQzMjM5IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmaca69453f3380e863bdff6f7dc93d10978526cfcb3c469bac538ecee97061522f8
hovercard-subject-tagissue:4256500368
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/62720/issue_layout
twitter:imagehttps://opengraph.githubassets.com/b2b0ecbc4a0e560a4eb150dc2309e8ec905c4990523cc8fc93f5c38a4d8a57b8/nodejs/node/issues/62720
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/b2b0ecbc4a0e560a4eb150dc2309e8ec905c4990523cc8fc93f5c38a4d8a57b8/nodejs/node/issues/62720
og:image:altThis proposes new vm module primitives that aim to replace the existing vm.SourceTextModule and provide a high-level loader API for ESM (specifically SourceTextModule) loading customization. Consid...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejoyeecheung
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/issues/62720#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F62720
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F62720
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/issues/62720
Reloadhttps://github.com/nodejs/node/issues/62720
Reloadhttps://github.com/nodejs/node/issues/62720
Please reload this pagehttps://github.com/nodejs/node/issues/62720
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/issues/62720
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.4k https://github.com/nodejs/node/issues
Pull requests 964 https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Proposal: new vm module primitives & loader API for ESM customizationhttps://github.com/nodejs/node/issues/62720#top
loadersIssues and PRs related to ES module loadershttps://github.com/nodejs/node/issues?q=state%3Aopen%20label%3A%22loaders%22
https://github.com/joyeecheung
joyeecheunghttps://github.com/joyeecheung
on Apr 13, 2026https://github.com/nodejs/node/issues/62720#issue-4256500368
openjs-foundation/summit#482https://github.com/openjs-foundation/summit/issues/482
tracking issuehttps://github.com/nodejs/node/issues/37648
@legendecashttps://github.com/legendecas
#33439https://github.com/nodejs/node/issues/33439
#50113https://github.com/nodejs/node/issues/50113
#59118https://github.com/nodejs/node/issues/59118
#47096https://github.com/nodejs/node/issues/47096
very intricate memory management schemehttps://joyeecheung.github.io/blog/2023/12/30/fixing-nodejs-vm-apis-1/
#60242https://github.com/nodejs/node/issues/60242
#31234https://github.com/nodejs/node/issues/31234
#35848https://github.com/nodejs/node/issues/35848
#43899https://github.com/nodejs/node/issues/43899
#43899https://github.com/nodejs/node/issues/43899
#59656https://github.com/nodejs/node/issues/59656
#60242https://github.com/nodejs/node/issues/60242
#35714https://github.com/nodejs/node/issues/35714
#31234https://github.com/nodejs/node/issues/31234
#35848https://github.com/nodejs/node/issues/35848
#43899https://github.com/nodejs/node/issues/43899
#61127https://github.com/nodejs/node/issues/61127
#55756https://github.com/nodejs/node/pull/55756
loadersIssues and PRs related to ES module loadershttps://github.com/nodejs/node/issues?q=state%3Aopen%20label%3A%22loaders%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.