What you should know when encountering performance problems in AngularJS
From the article: “AngularJS is a huge framework with that already has many performance enhancements built in, but they can’t solve all our problems. No matter how fast the framework, we can all create sluggish code through bad practices and not understanding key concepts that help it perform well. The following performance pointers are some of the things I’ve learned from developing Angular applications that will hopefully enable you to keep building fast applications.”
Some highlights:
- The latest beta of 1.3 allows one-time binding syntax:
{{ ::value }}
- Use $scope.$apply correctly
- Be careful with ng-repeat
- Be frugal with filter expressions
Read more from the source: Binpress