Skip to content

Instantly share code, notes, and snippets.

@sionjlewis
Last active January 8, 2017 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sionjlewis/1caf2e454a8fca0d1841ab77f4e016a6 to your computer and use it in GitHub Desktop.
Save sionjlewis/1caf2e454a8fca0d1841ab77f4e016a6 to your computer and use it in GitHub Desktop.
Hello Angular World: code snippet for article (http://www.sjlewis.com). The complete source code and project files can be found here: https://github.com/sionjlewis/Hello.Angular.World
(function (global) {
System.config({
paths: {
// Paths serve as alias (ASP.NET MVC: prefix / to specify the root).
'npm:': 'node_modules/'
},
// Map tells the System loader where to look for things.
map: {
// Our app is within the app folder (ASP.NET MVC: prefix / to specify the root).
app: 'app',
// Angular bundles.
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// Other libraries.
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js'
},
// Packages tells the System loader how to load when no filename and/or no extension.
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
}
}
});
})(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment