[WIP] Add ability to install custom JS module loaders.#1
Draft
Sam Gammon (sgammon) wants to merge 1 commit intobase/24.1.2from
Draft
[WIP] Add ability to install custom JS module loaders.#1Sam Gammon (sgammon) wants to merge 1 commit intobase/24.1.2from
Sam Gammon (sgammon) wants to merge 1 commit intobase/24.1.2from
Conversation
- Adds `JSModuleLoaderFactory` interface for ESM loader hook. - Adds `CommonJSResolverHook` interface for CJS resolver hook. - Adds `js.module-loader-factory=handler` setting to enable. - Adjusts `JSEngine` to retain the installed factory and/or resolver. - Adjusts `JSRealm` to use `JSEngine` to create the module loader. - Adjusts `NpmCompatibleESModuleLoader` to be extensible. - Adjusts `CommonJSResolution` to use the resolver hook if present. Relates to oracle/graal#9177 Signed-off-by: Sam Gammon <sam@elide.dev>
15 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
JSModuleLoaderFactoryinterface for ESM loader hook.CommonJSResolverHookinterface for CJS resolver hook.js.module-loader-factory=handlersetting to enable.JSEngineto retain the installed factory and/or resolver.JSRealmto useJSEngineto create the module loader.NpmCompatibleESModuleLoaderto be extensible.CommonJSResolutionto use the resolver hook if present.Relates to oracle/graal#9177
Relates to elide-dev/elide#1227