3

Is it possible to use jsmeter for analysis of performance of javascript on my own application?
I am not talking about .js files, I want to measure the performance of javascript on my asp.net application pages.
Are there any other tools for same purpose?

Ruchit Rami
  • 2,273
  • 4
  • 28
  • 53

2 Answers2

0

I am not sure if there are any third party tools available but you can refer to answers here: How to measure time taken by a function to execute

You will notice console.time and console.timeEnd can be used to easily measure performance of your js.

Community
  • 1
  • 1
Prashant Lakhlani
  • 5,758
  • 5
  • 25
  • 39
0

You can use build-in browser profiles. For example Chrome profiler or Firebug for Firefox to measure the time of execution.

Mikhail Payson
  • 923
  • 8
  • 12