Pankaj Ladhar
Pankaj Ladhar

Reputation: 155

How to measure performance of angular app?

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

Answers (1)

wawka
wawka

Reputation: 5154

I haven't tried it yet, but it looks promising: https://opbeat.com/angularjs

Other ideas:

  1. Check how many watchers do you have: https://github.com/bahmutov/code-snippets/blob/master/ng-count-watchers.js

  2. Check for memory leaks: http://www.dwmkerr.com/fixing-memory-leaks-in-angularjs-applications

Upvotes: 1

Related Questions