angular-performance-checklist icon indicating copy to clipboard operation
angular-performance-checklist copied to clipboard

⚡ Cheatsheet for developing lightning fast progressive Angular applications

Results 4 angular-performance-checklist issues
Sort by recently updated
recently updated
newest added

The domain name of article "Everything you need to know about change detection in Angular" has changed from `blog.angularindepth.com` to `indepth.dev`, so the article link should be changed accordingly.

The [**Run outside Angular section's demo code**](https://github.com/mgechev/angular-performance-checklist#run-outside-angular) was using a non-existing property: `PointAnimationComponent`, inside its `ngOnChanges` method, was calling an unknown `_ngZone` property from the `this` object. This PR renames...

I think in the code example here: [run-outside-angular](https://github.com/mgechev/angular-performance-checklist#run-outside-angular) , there is a call to a property that doesn't exist? ![Inkedfirefox_6sioj6cPkU_LI](https://user-images.githubusercontent.com/43883758/133914974-29254bd2-449a-4682-8df5-83a16d1adbca.jpg)

The TS access modifier `private` is removed in detriment of true private variables. Use the same code for `PointAnimationComponent` class to fix wrong variable names that were used when the...