Created
March 19, 2018 16:14
-
-
Save alxhub/c5abaae93a3e57b5d644a39f89eefec7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//our root app component | |
import {Component, NgModule, VERSION} from '@angular/core' | |
import {BrowserModule} from '@angular/platform-browser' | |
@Component({ | |
selector: 'my-app', | |
template: ` | |
<div> | |
<h2>Hello {{name}}</h2> | |
</div> | |
`, | |
}) | |
export class App { | |
name:string; | |
constructor() { | |
this.name = `Angular! v${VERSION.full}` | |
} | |
} | |
@NgModule({ | |
imports: [ BrowserModule ], | |
declarations: [ App ], | |
bootstrap: [ App ] | |
}) | |
export class AppModule {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var angularVersion; | |
if(window.AngularVersionForThisPlunker === 'latest'){ | |
angularVersion = ''; //picks up latest | |
} | |
else { | |
angularVersion = '@' + window.AngularVersionForThisPlunker; | |
} | |
System.config({ | |
//use typescript for compilation | |
transpiler: 'typescript', | |
//typescript compiler options | |
typescriptOptions: { | |
emitDecoratorMetadata: true | |
}, | |
paths: { | |
'npm:': 'https://unpkg.com/' | |
}, | |
//map tells the System loader where to look for things | |
map: { | |
'app': './', | |
'@angular/core': 'npm:@angular/core'+ angularVersion + '/bundles/core.umd.js', | |
'@angular/common': 'npm:@angular/common' + angularVersion + '/bundles/common.umd.js', | |
'@angular/common/http': 'npm:@angular/common' + angularVersion + '/bundles/common-http.umd.js', | |
'@angular/compiler': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler.umd.js', | |
'@angular/platform-browser': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser.umd.js', | |
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic.umd.js', | |
'@angular/http': 'npm:@angular/http' + angularVersion + '/bundles/http.umd.js', | |
'@angular/router': 'npm:@angular/router' + angularVersion +'/bundles/router.umd.js', | |
'@angular/forms': 'npm:@angular/forms' + angularVersion + '/bundles/forms.umd.js', | |
'@angular/animations': 'npm:@angular/animations' + angularVersion + '/bundles/animations.umd.js', | |
'@angular/platform-browser/animations': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-animations.umd.js', | |
'@angular/animations/browser': 'npm:@angular/animations' + angularVersion + '/bundles/animations-browser.umd.js', | |
'@angular/core/testing': 'npm:@angular/core' + angularVersion + '/bundles/core-testing.umd.js', | |
'@angular/common/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-testing.umd.js', | |
'@angular/common/http/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-http-testing.umd.js', | |
'@angular/compiler/testing': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler-testing.umd.js', | |
'@angular/platform-browser/testing': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-testing.umd.js', | |
'@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic-testing.umd.js', | |
'@angular/http/testing': 'npm:@angular/http' + angularVersion + '/bundles/http-testing.umd.js', | |
'@angular/router/testing': 'npm:@angular/router' + angularVersion + '/bundles/router-testing.umd.js', | |
'tslib': 'npm:[email protected]', | |
'rxjs': 'npm:rxjs', | |
'typescript': 'npm:[email protected]/lib/typescript.js' | |
}, | |
//packages defines our app package | |
packages: { | |
app: { | |
main: './main.ts', | |
defaultExtension: 'ts' | |
}, | |
rxjs: { | |
defaultExtension: 'js' | |
} | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<base href="." /> | |
<script type="text/javascript" charset="utf-8"> | |
window.AngularVersionForThisPlunker = 'latest' | |
</script> | |
<title>angular playground</title> | |
<link rel="stylesheet" href="style.css" /> | |
<script src="https://unpkg.com/[email protected]/client/shim.min.js"></script> | |
<script src="https://unpkg.com/zone.js/dist/zone.js"></script> | |
<script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script> | |
<script src="https://unpkg.com/[email protected]/Reflect.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/system.js"></script> | |
<script src="config.js"></script> | |
<script> | |
System.import('app') | |
.catch(console.error.bind(console)); | |
</script> | |
</head> | |
<body> | |
<my-app> | |
loading... | |
</my-app> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//main entry point | |
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; | |
import {AppModule} from './app'; | |
platformBrowserDynamic().bootstrapModule(AppModule) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Styles go here */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment