Angular2 polyfill for Angular1
Please note, this is a work in progress library
Install
$ npm install --save angular2-polyfill
Or with jspm
$ jspm install npm:angular2-polyfill
Usage
AppComponent
The AppComponent
is the base component for our entire application. The following content is stored in components/app/app.component.ts
. Because
we are using ui-router
, the only thing we add as a template is the place where the views should be rendered.
;;;
HomeComponent
The HomeComponent
simply renders the title defined in the class. Please note that in the background, we use the controllerAs
syntax. The value of this property
is consistent with the Angular 1.5 component value. The following content is stored in components/home/home.component.ts
.
Bootstrapping
Use the bootstrap
method from the upgrade
platform. This allows you to rewrite your entire application at your own
pace. It accepts the base angular module as first argument, and the component/service/... as second argument. This way, you can
keep the other component as they are now and refactor them in the future.
;;;;; ; bootstrapngModule, AppComponent;
Note: The
HomeComponent
is being bootstrapped automatically because it is referred to in the@RouteConfig
decorator of theAppComponent
.
index.html
We are using SystemJS as module loader. Feel free to use something else.
Decorators
- @Component
- @Directive
- @RouteConfig
- @Injectable
- @Inject
- @Optional
- @Pipe
Pipes
- AsyncPipe
Services
Core
- EventEmitter
DI
- Injector
HTTP
- Http
Routing
- Router
- RouteParams
Functions
- provide
Lifecycle hooks
- ngOnInit
- ngOnDestroy
Examples
GitHub
- Tour of Heroes - Tour of Heroes implementation
Plunks
- Tour of Heroes - Tour of Heroes
- Routing - Routing example
License
MIT © Sam Verschueren