I decided to prepare an update for my application from angular1.x to angular2.x. There is , I did not find something useful. I studied this document on the update strategy from 1 to 2. I realized that all the magic in migration is that you have to run Angular 1 and 2 at a time using Angular 1 in the application root, disable the unsupported Angular1 code (filters, decorators, etc.) And adapt (read wrap!) all supported Angular1 code (directives, services, etc.).
In the document I cited above, you can see the pseudo-code of the wrappers. I think that if I complete all my current code, it obviously will not give it speed. Who really has experience, please write, how is this real? Can I fear that my application will start to slow down and it might be easier to rewrite it after the new Angular2? But he is very big, it will be a lot of work, and I should think about it earlier. That is why I ask about real experience, which has large projects in real life and has already been transferred.
In addition, I want to ask how I check library compatibility. Maybe there is some service that checks my application and displays the results, which libraries are good and which fail?
source
share