-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Why using SystemJS to load async feature areas ? #967
Comments
I also would like to know this. We were using es6-promise-loader before right? |
Maybe because is the recommended way by the Angular 2 staff, however since this repo was already working with |
Do not confuse |
That does make sense, instead of depending on that loader is best to rely on SystemJS to polyfill the @katallaxie Is that right? |
No, I think there are 2 things with the same name : SystemJS. On one hand, there is the SystemJS that we all know - the module loader - and on the other hand there is the module loader API for ES6, the one we are using here. I heard about it but I didn't know that they have the same name. _ I'm not sure but that is what I understand._ |
@mildful SystemJS wants to harvest the same mechanism as |
So it is in deed working as a polyfill in this context. |
We are using the keywords |
[ ] bug report
[ ] feature request
[x] question about the decisions made in the repository
Since the release of RC5 and
NgModule
, you are usingSystem.import
to load modules asynchronously. I was just wondering why. Since we are using webpack, is it redundant to have SystemJS ?Angular version: 2.0.0-rc.5
The text was updated successfully, but these errors were encountered: