Guy Bedford
Guy Bedford
This sort of thing can be done through a custom format loading with the loader hooks. In SystemJS the above method is provided via `SystemJS.config({ meta: { 'app/*.json': { format:...
Ideally a redirect could just be a transparent proxy module in the registry, like an `export *` with default?
> As a separate issue, HTML uses the response URL as the base URL for resolving relative specifiers. This seems necessary; using the request URL would end up just weird....
@matthewp as far as I'm aware, a private metadata object will still be part of the spec as a final argument to the hooks, it just hasn't been written in...
@dherman consider that the majority of understanding about a module occurs in resolve - as part of performing normalizations lots of metadata / state gets put together in the process,...
Note there are also use cases where it can be useful to provide metadata directly into the import function as well: ``` javascript System.import('file.js', { moduleFormat: 'CommonJS' }); ``` The...
`importDefault`?
Just to comment with respect to Service Worker integration, in browsers that support Service Worker (with a good "first boot" story), surely the fetch and translate hooks are then effectively...
I do think there is value in providing both (1) and (2) here, as they cater for different use cases. Inline script is useful, but is disabled by CSP. Loading...
Nice to see the simplification effort here! Is 'import.loader.load' here just a normal import function? On Fri, 01 Jul 2016 at 02:11, Matthew Phillips [email protected] wrote: > In regards to...