Angular performance tracking

Viewed 1030

What is best and recommended way to track an Angular application performance? I can use many other available techniques/api's like performance.now to track and google analytics/application insight to send custom performance counters.

But my question is do we have something built-in inside Angular for this purpose or a recommend third party module/library that helps to track angular application performance?

2 Answers

I also recommend using the package perf-marks. It's an isomorphic, simple, and lightweight solution for User Timing API in Javascript - only 208B used in projects such as Jira, Confluence, and Bitbucket. Tree-shaking and entry points built-in. Also, you can use it on your browser or NodeJS sides.

https://github.com/willmendesneto/perf-marks

Related