How to use OnPush change detection in Angular
Monday, January 19, 2026
OnPush change detection in Angular dramatically improves performance by skipping change detection when input references don’t change. As the creator of CoreUI with over 12 years of Angular experience since 2014, I’ve used OnPush to optimize performance in enterprise dashboards. OnPush strategy runs change detection only when input properties change reference, events fire, or Observables emit new values. This approach reduces unnecessary checks and makes applications faster, especially with large component trees.