2015-12-14 23:31:40 -05:00
|
|
|
<!-- #docregion -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Angular 2 QuickStart</title>
|
|
|
|
|
|
|
|
<!-- 1. Load libraries -->
|
2016-01-17 22:59:34 -05:00
|
|
|
<!-- IE required polyfills (from CDN), in this exact order -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.16/system-polyfills.js"></script>
|
|
|
|
|
2015-12-14 23:31:40 -05:00
|
|
|
<script src="https://rawgithub.com/systemjs/systemjs/0.19.6/dist/system.js"></script>
|
|
|
|
<script src="https://code.angularjs.org/tools/typescript.js"></script>
|
2015-12-15 16:25:40 -05:00
|
|
|
<script src="https://code.angularjs.org/2.0.0-beta.0/angular2-polyfills.js"></script>
|
|
|
|
<script src="https://code.angularjs.org/2.0.0-beta.0/Rx.js"></script>
|
|
|
|
<script src="https://code.angularjs.org/2.0.0-beta.0/angular2.dev.js"></script>
|
2015-12-14 23:31:40 -05:00
|
|
|
|
|
|
|
<!-- 2. Configure SystemJS -->
|
|
|
|
<script>
|
|
|
|
System.config({
|
|
|
|
transpiler: 'typescript',
|
|
|
|
typescriptOptions: { emitDecoratorMetadata: true },
|
|
|
|
packages: {'src': {defaultExtension: 'ts'}}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- 3. Bootstrap -->
|
|
|
|
<script>
|
|
|
|
System.import('angular2/platform/browser').then(function(ng){
|
|
|
|
System.import('src/hello_world').then(function(src) {
|
|
|
|
ng.bootstrap(src.HelloWorld);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<!-- 4. Display the application -->
|
|
|
|
<body>
|
|
|
|
<hello-world>Loading...</hello-world>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|