Champion(s): Luca Casonato, Guy Bedford
Stage 2.7
The proposal spec text is currently based to the ECMA-262 PR for Source Phase Imports at tc39/ecma262#3492.
This proposal seeks to solve the static worker module analysis problem for JavaScript, through defining a source phase import for Source Text Module.
With the recently introduced Source Phase Imports, it is now possible to define import phases that exist prior to the full linking and execution of the module graph.
While WebAssembly is supported, the exact semantics of the source phase for ECMAScript modules themselves is not yet specified.
One of the driving specification constraints for these objects is how they behave for workers and other agents, which we would argue forms a critical design constraint for these features. This is why this proposal's problem statement is seen as the most suitable "next step" in the larger module harmony layering efforts, with the phase object or objects specified here to support the layering of future proposals, including module expressions, module declarations and virtualization through compartments loaders.
Improving runtime and tooling support for workers will enable faster JavaScript applications.
The new Worker()
constructor pattern that is currently relied on for these
workflows suffers from a number of analysis issues:
- It always takes an arbitrary expression to locate the worker URL. The worker is not just a static import, like normal ESM imports.
- The string passed to
new Worker(url)
doesn't support module resolution rules. Because relative URLs are resolved baseURL-relative, users usually need to rely on a resolution function first, such as an out-of-band configuration or expressions involvingimport.meta.resolve()
orimport.meta.url
. There are many different patterns here and no single standard approache employed by developers, further exacerbating any analysis attempts as per problem (1).
Usage examples:
// Common case, but requires very non-trivial static analysis
const url = new URL("./my_worker.js", import.meta.url);
const worker = new Worker(url, { type: "module" });
const url = import.meta.resolve("./my_worker.js");
const worker = new Worker(url, { type: "module" });
// This can quickly turn into near impossible static analysis for most tools
function createWorker(url) {
return new Worker(url, { type: "module" });
}
const url = new URL("./my_worker.js", import.meta.url);
const processor = createWorker(url);
The result is a situation in which is is difficult to reliably statically analyze which modules are loaded in workers, causing issues for runtimes and tools:
new Worker
is not ergonomic for developers to use when authoring applications and especially when authoring libraries.- Tools have difficulty both analyzing and bundling applications that use workers, resulting in less usage and limited compatibility for shared libraries to support workers.
A better language primitive for worker loading can improve worker ergonomics for users as well as their support in analysis and build tooling.
By defining the source phase for ECMAScript module records, it is possible to import a handle to a module statically, and use it to directly initialize the worker:
import source myModule from "./my-module.js";
// `{ type: 'module' }` can be inferred since myModule is a module object
const worker = new Worker(myModule);
This technique solves analysis problems (1) and (2) for worker imports in improving the runtime worker ergonomics - supporting static worker references, while resolving as module-relative via the normal module resolution rules with all resolution features supported.
The improved static analysis makes it possible for tools to analyze the worker
references more easily, to determine that a static myModule
handle is being
passed directly to new Worker
. Bundling can be performed by replacing the
./my-module.js
phase import with a phase import to the fully optimized worker
chunk to load.
Defining the source phase then also lays the ground work for the future module harmony proposals that require a source representation.
Since phases also support a dynamic import form, we also define the dynamic variant:
const workerModule = await import.source('./worker.js');
new Worker(workerModule);
The current proposed API is for a ModuleSource
class instance extending AbstractModuleSource
.
This is a new non-global intrinsic with the same reachability properties of
AbstractModuleSource
via any source phase import to a JS module.
Since module sources are obtained from the module registry, they are cached at their registry key, just like module instances. Dynamically importing a module source, implies dynamically importing the "canonical instance" for the same registry key of that module source.
In the current spec text, this is handled by converting the HostGetModuleSourceName
hook for
module sources into a HostGetModuleSourceModuleRecord
hook, which obtains the
Source Text Module Record
for the given module source. This record can then be directly driven
to completion.
The expectation for the HTML integration is that new Worker(module)
or any concrete instance of
AbstractModuleSource
would behave as if the module was first cloned into the worker and then
imported with dynamic import()
.
An additional goal here would be for the created worker to inherit the same resolution rules of the parent environment that the module source was created from to provide consistent module resolution.
For WebAssembly, CSP integration is a compile-time check, which occurs before construction of
the AbstractModuleSource
corresponding to the WebAssembly module. That is, by the time one has
an AbstractModuleSource
one has already passed the CSP policy checks.
For JavaScript, CSP integration similarly occurs statically before execution, where having source
phase import handle to a JS ModuleSource
implies the CSP permission to execute that source.
For dynamic import, passing an AbstractModuleSource
to dynamic import would not need to go through
CSP checks, since the obtained object would have already been vetted by CSP.
For new Worker(module)
, there may be a stricter worker-src
policy than the script-src
policy,
requiring CSP policy verification against the src
for the module. In this case, it should be
possible to recreate the original CSP src
from the [[HostDefined]]
data, without needing any
explicit ECMA-262 integration.
A ModuleSource
instance can be supportable in structured clone, since the underlying
source data has no realm-dependence. Any data stored in [[HostDefined]]
would need to be
defined to itself be structured cloneable to be able to be recreated.
This proposal is designed to work in conjunction with Source Phase Imports, whether or not it directly specifies a source phase for ECMAScript modules.
The Import Attributes Proposal provides a way to pass attributes to the module loader. These attributes are used during source loading and resolution. Because the module source has already gone through this process, they are already attributes-influenced by the time their handle is obtained.
When passing a module module source object to a dynamic import()
or new Worker
,
any additional with
attributes would therefore be unsupported - and setting attributes
would throw an error.
The Deferred Imports proposal provides a way to defer the synchronous evaluation of a module until it is needed, but not to defer the linking of the module. This is a phase between the "module context attach" phase and the "evaluation" phase.
As an entirely separate phase, this proposal does not otherwise interact with the deferred imports proposal.
The module objects defined by the Module Expressions and Module Declarations proposals, should align with whatever SourceTextModule phase object foundations are specified in this proposal.
Analysis metadata for module declaration imports and exports may exposed through an extension of the existing source analysis. These possible analysis extensions are discussed in #19.
The Compartments Proposal provides a way to dynamically create module instances from module source objects, optionally providing custom loaders.
The module source definition here is being aligned with the definitions in use within this proposal and others. Where they are specified in this proposal or others, the compartment loaders proposal may extend their functionality further in future by adding new methods to these existing objects for example.
See the former status updates at #50.
This proposal originally also included adding source analysis properties to the module source of the form:
AbstractModuleSource.prototype.imports: () => Import[]
AbstractModuleSource.prototype.exports: () => Export[]
AbstractModuleSource.prototype.hasImportMeta: boolean
AbstractModuleSource.prototype.hasTopLevelAwait: boolean
Where Import
was defined by:
interface Import {
specifier: string,
phase: null | 'source'
}
and Export
was defined by DirectExport | Reexport | ReexportAll
:
interface DirectExport {
type: 'direct',
names: string[]
}
interface Reexport {
type: 'reexport',
name: string,
import: string | null, // null used to indicate a namespace reexport
from: string,
}
interface ReexportAll {
type: 'reexport-all',
from: string,
}
This feature was removed due to it causing this proposal to have dual motivations.
JS module source analysis may be remotivated in future on JS virtualization work such as compartments.
That this feature was removed in this initial proposal does not by any means indicate that this source analysis is not viable in future, only that a narrower focus on use cases was needed for this proposal.
Post an issue.