I want to run My new Angular 7 application in our existing Angular JS applicatio? does anyone has any demo example or Steps we should consider while doing ?
Asked
Active
Viewed 239 times
-2
-
yes, it's possible to do so – nircraft Mar 21 '19 at 14:56
1 Answers
0
Instead of considering one app embedding another, consider 2 app pointing to each others. It will be much easier to handle as you'll have 2 seperates apps and you can run them in different environments.
I had to migrate an application from AngularJS to Angular 7. As this was a big subject, we decided to do this one feature at a time. Here is what we did:
- Reproduce the layout of AngularJS app (v1) into your Angular app (v2)
- Implements the feature into your v2
- Changes every way to access the features into v1 to make them go to v2 (basically changing URL towards the v2)
- In the layout of v2 points URL towards v1 features which have not been migrated yet
This can give you some hints to approach your problem.

Grégory Elhaimer
- 2,731
- 1
- 16
- 21