Reputation: 155
I am working on big application built using angular. I have read a lot articles how to improve performance. I have implemented below mentioned things -
But I have tried a lot plugin but not able to get satisfactory result.
Could anybody tell me how to measure performance of angular app ??
Upvotes: 6
Views: 790
Reputation: 5154
I haven't tried it yet, but it looks promising: https://opbeat.com/angularjs
Other ideas:
Check how many watchers do you have: https://github.com/bahmutov/code-snippets/blob/master/ng-count-watchers.js
Check for memory leaks: http://www.dwmkerr.com/fixing-memory-leaks-in-angularjs-applications
Upvotes: 1