Technology
Lazy Loading in Angular
January 2, 2021by Jeeten Parmar
Lazy loading is a concept in Angular which allows you to load JavaScript components asynchronously when a specific route is activated. It improves the speed of the application load time by splitting the application into several bundles. When the user navigates through the app, the bundles are loaded as and when required.
The most important concepts of application performance are Response Time, and Resources Consumption. A problem can occur at any time and from anywhere, but it is highly important to find and solve them before they happen.
The prospect of Lazy Loading in Angular helps reduce the risk of some of the web app performance problems to a minimal.
Some of the Advantages of Lazy Loading: