Home > Blockchain >  Is there any alternative way for ngUpgrade to Migrate Angularjs to Angular?
Is there any alternative way for ngUpgrade to Migrate Angularjs to Angular?

Time:12-09

We have an Application which is built using Angularjs. Now I need to Migrate the whole application to angular latest vesrion.

It seems NgUpgradeModule supporting hybrid application , but I need to change the whole application to angular.

Is there any option to acheive this?

CodePudding user response:

I think your best option is just to create the hybrid Angular / AngularJS application you mentioned, then gradually replace existing AngularJS bits with Angular ones. The advantage with this approach is that you will have an app with 100% of the functionality during the transition.

  • Related