Can output of dart2js (and angular2) be split into multiple packages and conditionally loaded during app runtime?
Similar to how RequireJS can do conditional loading of app parts/packages.
Example:
<button onClick="showAdminInterface()">ADMIN</button>
function showAdminInterface()
{
require(['myApp/AdminPackage'], function(pkg){
pkg.display();
});
}
Dart supports lazy loading of libraries and Angular2 also allows to use this feature.
For details see