How to measure the performance of an angular application?

I am working on a large application created using angular. I have read many articles on how to increase productivity. I have implemented the things mentioned below -

  • Avoid observers
  • ng-repeat with track
  • single binding
  • Used by ng-if instead of ng-show
  • uses $ compileProvider.debugInfoEnabled (false) to remove the ng-binding and ng-scope classes during production.

But I tried a lot of the plugin, but could not get a satisfactory result.

Can someone tell me how to measure angular app performance

+4
source share

Source: https://habr.com/ru/post/1629420/


All Articles