Zusammenfassung der Ressource
Angular
- System.config.js
Anmerkungen:
- Configuration for systemJS which handles module loading and compilation of TypeScript into JavaScript.
- TypeScript
Anmerkungen:
- Files end in .ts
Basically a ES6 version of JavaScript plus a few other TypeScript only features needed for angular.
Angular is written in TypeScript
- Transpilation
Anmerkungen:
- Browsers do not support TS so this is needed.
- ES6
- Classes
- Template Strings
Anmerkungen:
- Multi-line strings that use back ticks (`....`)
- @Annotations
Anmerkungen:
- Links classes to HTML tags.
Useful b/c it creates boilerplate for the class automatically.
Can be configured by passing an object with various parameters.
Components are imported from @Angular/core
- tsconfig.json
Anmerkungen:
- Config for TypeScript transpiler.
Target : Version of JS we want.
- Components
Anmerkungen:
- Building blocks of Angular Applications
"Angular apps are architected as a tree of Components stemming from one root Component. An angular application is a set of custom-made tags that interact with each other.---> These tags are referred to as components.A feature of Angular that allows us to create a new HTML language.
- app.component/root
- Modules or NgModules
Anmerkungen:
- The code is structured in Angular into packages
Every app requires at least one root module. referred to as AppModule.
To define an AngularModule we first create a class then annotate it with a decorator called @NgModule.
Params:
imports - the other modules that export material we need in this Angular Module. Almost every apps root should import [Browser Module]
Declarations - list of components and declarations belonging to this module.
bootstrap - identifies the root component angular should bootstrap when it starts the application.
- Boostrapping
Anmerkungen:
- loads all the code from a module, was done automatically in AngularJS.
- Platform
Anmerkungen:
- Angular does not bootstrap automatically like it did in the first version due to the fact that it is Platform-specific in angular.
Angular1 assumed that it would only ever be run in a browser, which is not true.
We must declare how we want to bootstrap, this way uses the browser. ----->platformBrowserDynamic
- BootStrapping a
component declares it as
the root component.
- Import in Angular Vs Default JS module
Anmerkungen:
- JS modules refer to code which exists in a single file.
NgModules combine code from different files together into a single file.
- Routing
- Angular CLI
- CSS
- enviorments/*
Anmerkungen:
- contains files for each destination enviorment, each export simple config variables to use in application.
- karma
Anmerkungen:
- Karma test running library.
- main.ts
Anmerkungen:
- Main entry point for app.
compiles app with JIT compiler and bootstaps apps root module. to run in browser. AOT compiler is also avalaible