js-loaders icon indicating copy to clipboard operation
js-loaders copied to clipboard

Pseudoimplementation of the proposed ES6 module loaders.

Results 36 js-loaders issues
Sort by recently updated
recently updated
newest added

It is possible to do: ``` javascript System.import('http://some-site.com/script') ``` since import skips normalization, so there are no module name checks done. But it is not possible to do: ``` html...

browser-only

Consider - http://some-site.com/app/main.js: ``` javascript import {dep} from "./dep"; export var app = {}; ``` http://some-site.com/app/dep.js: ``` javascript export var dep = {}; ``` I now do: ``` javascript System.import('http://some-site.com/app/main.js')...

To continue the discussion from https://github.com/jorendorff/js-loaders/issues/50 If I provide a module, that may dynamically load another part of itself later, I may want to write something like: ``` javascript export...

It can be useful to write: ``` javascript System.baseURL = "../js" ``` At the moment, it is not clear if this would be supported by `$ToAbsoluteURL`. This is from -...

It is still a very key use case to be able to easily load more than two modules at the same time. According to the current spec, loading two modules...

It seems the loader still doesn't expose an internal "link" method extracting the effective execute function and dependency list for an es6 source file. If the loader does expose an...

In "1.3.1 EnsureEvaluated(mod, seen, loader) Abstract Operation", 1. If mod.[[Body]] is not undefined and mod.[[Evaluated]] is false, modules do not have an internal slot called [[Evaluated]]

Step 11.c.i can use SimpleDefine.

1. Let p be the result of LoadModule(loader, name, options). name is undefined. Maybe rename the request param to name?

1. Set successCallback.[[Load]] to load. EvaluateLoadedModule does not have an internal slot called [[Load]].