1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-22 17:02:58 +02:00

feat(roadmap/angular): add summary and resources about zones section (#6132)

This commit is contained in:
Konrad
2024-07-11 10:36:47 +02:00
committed by GitHub
parent bcac605aeb
commit de624e1967

View File

@@ -1,3 +1,9 @@
# Zones
- [@official@Angular - NgZone](https://angular.dev/api/core/NgZone)
Zone.js is a signaling mechanism that Angular uses to detect when an application state might have changed.
It captures asynchronous operations like setTimeout, network requests, and event listeners.
Angular schedules change detection based on signals from Zone.js.
- [@official@Resolving zone pollution](https://angular.dev/best-practices/zone-pollution)
- [@official@Angular without ZoneJS (Zoneless)](https://angular.dev/guide/experimental/zoneless)
- [@official@NgZone - API](https://angular.dev/api/core/NgZone)