Bootstrapping ng-upgrade
Use manual AngularJS bootstrapping, and remove
ng-app
/ng-strict-di
references if they exist
Add Angular dependencies
Add the upgrade adapter
import {UpgradeAdapter} from '@angular/upgrade'
Call the upgrade adapter's bootstrap
Once this is working the foundation is set for transitioning from AngularJS to Angular. It is important to note that the upgrade adapter's bootstrap mechanism is asynchronous. Additionally it's important to treat the upgrade adapter as a singleton.
The following file creates an instance of UpgradeAdapter
and exports it.
The following file bootstraps an AngularJS/Angular hybrid application:
The above example does not actually do anything other than bootstrap an empty application.
Upgrading/Downgrading Components
Once bootstrapping is complete, AngularJS components can be upgraded to work with Angular. Conversely, Angular components can be downgraded to work with AngularJS.
Last updated