angular-performance-checklist
angular-performance-checklist copied to clipboard
⚡ Cheatsheet for developing lightning fast progressive Angular applications
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? 
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...