You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
Angular (i.e. Angular 4) can run side by side with AngularJS (i.e. Angular 1). This means that we can write new components in Angular 4 and use them in the old Angular 1 application.
Of course, some configurations and cleaning up are necessary.
The text was updated successfully, but these errors were encountered:
Configure webpack for module loading. This also prepares for the following step.
Switch to TypeScript. This involves changing all .js files to .ts, and updating gulpfile.js to add TypeScript compilation to the build process.
Change existing views and controllers to Component Directives. This will facilitate the upgrade to Angular 4 as "components" are the primary building blocks in Angular 4.
This will be a long and challenging task. But it is possible and we can do it piece by piece.
First have a look at:
https://angular.io/guide/upgrade
Angular (i.e. Angular 4) can run side by side with AngularJS (i.e. Angular 1). This means that we can write new components in Angular 4 and use them in the old Angular 1 application.
Of course, some configurations and cleaning up are necessary.
The text was updated successfully, but these errors were encountered: