0
|
1 <html>
|
|
2
|
|
3 <head>
|
|
4 <title>Angular 2 QuickStart</title>
|
|
5
|
|
6 <!-- 1. Load libraries -->
|
|
7 <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
|
|
8 <script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
9 <script src="node_modules/rxjs/bundles/Rx.js"></script>
|
|
10 <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
|
11
|
|
12 <!-- 2. Configure SystemJS -->
|
|
13 <script>
|
|
14 System.config({
|
|
15 packages: {
|
|
16 app: {
|
|
17 format: 'register',
|
|
18 defaultExtension: 'js'
|
|
19 }
|
|
20 }
|
|
21 });
|
|
22 System.import('app/boot')
|
|
23 .then(null, console.error.bind(console));
|
|
24 </script>
|
|
25
|
|
26 </head>
|
|
27
|
|
28 <!-- 3. Display the application -->
|
|
29 <body>
|
|
30 <my-text>Loading...</my-text>
|
|
31 </body>
|
|
32
|
|
33 </html>
|