1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-04 07:22:26 +02:00

docs(angular): add lazy loading modules content (#6500)

This commit is contained in:
J. Degand 2024-08-12 04:25:58 -04:00 committed by GitHub
parent 4ec9f2097c
commit ee27f5c72d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1 +1,9 @@
# Lazy Loading Modules
# Lazy Loading Modules
By default, NgModules are eagerly loaded. This means that as soon as the application loads, so do all the NgModules, whether they are immediately necessary or not. For large applications with lots of routes, consider lazy loading —a design pattern that loads NgModules as needed. Lazy loading helps keep initial bundle sizes smaller, which in turn helps decrease load times.
Visit the following resources to learn more:
- [@official@Angular Official Docs - Lazy Loading](https://angular.dev/guide/ngmodules/lazy-loading)
- [@article@Angular Lazy Loading](https://www.bairesdev.com/blog/angular-lazy-loading/)
- [@video@Lazy Loading in Angular: Improving Performance and User Experience](https://www.youtube.com/watch?v=mjhi27YfV8Y)