Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

CPU Cycles, Memory Usage, Execution Time, etc.?

Added: Is there a quantitative way of testing performance in JavaScript besides just perception of how fast the code runs?

share|improve this question
You might like to look at the YSlow plugin for Firefox. – Rob Wells Sep 21 '08 at 16:43
1  
That's only going to tell you how long it takes to load. I think the question was more concerned with performance when it is running. – Sam Hasler Sep 24 '08 at 1:18

14 Answers

Profilers are definitely a good way to get numbers, but in my experience, perceived performance is all that matters to the user/client. For example, we had a project with an Ext accordion that expanded to show some data and then a few nested Ext grids. Everything was actually rendering pretty fast, no single operation took a long time, there was just a lot of information being rendered all at once, so it felt slow to the user.

We 'fixed' this, not by switching to a faster component, or optimizing some method, but by rendering the data first, then rendering the grids with a setTimeout. So, the information appeared first, then the grids would pop into place a second later. Overall, it took slightly more processing time to do it that way, but to the user, the perceived performance was improved.

share|improve this answer
4  
yes yes yes. I wish I could mod you up 2x ++1 – Byron Whitlock Dec 10 '09 at 21:31

We can always measure time taken by any function by simple date object.

var start = +new Date();  // log start timestamp
function1();
var end =  +new Date();  // log end timestamp
var diff = end - start;
share|improve this answer
2  
Note that this solution returns the diff in milliseconds – Chris B Feb 4 at 15:43

Try jsPerf. It's an online javascript performance tool for benchmarking and comparing snippets of code. I use it all the time.

share|improve this answer

JSLitmus is a lightweight tool for creating ad-hoc JavaScript benchmark tests

Let examine the performance between function expression and function constructor:

<script src="JSLitmus.js"></script>
<script>

JSLitmus.test("new Function ... ", function() { 
    return new Function("for(var i=0; i<100; i++) {}"); 
});

JSLitmus.test("function() ...", function() { 
       return (function() { for(var i=0; i<100; i++) {}  });
});

</script>

What I did above is create a function expression and function constructor performing same operation. The result is as follows:

FireFox Performance Result

FireFox Performance Result

IE Performance Result

IE Performance Result

share|improve this answer
The linked JSLitmus page contains broken download links. I've found JSLitmus (for browsers) and jslitmus (for NodeJS, lowercase!). – Rob W Aug 3 '12 at 14:31

Some people are suggesting specific plug-ins and/or browsers. I would not because they're only really useful for that one platform; a test run on Firefox will not translate accurately to IE7. Considering 99.999999% of sites have more than one browser visit them, you need to check performance on all the popular platforms.

My suggestion would be to keep this in the JS. Create a benchmarking page with all your JS test on and time the execution. You could even have it AJAX-post the results back to you to keep it fully automated.

Then just rinse and repeat over different platforms.

share|improve this answer
1  
this is true, but profilers are good in case there is a coding problem that has nothing to do with a browser specific issue. – John Boker Sep 21 '08 at 17:02
Sure! Yeah they'll catch general "bad coding" problems and specific ones are great for doing the actual debugging, but for general use-case testing, you'll benefit from something that runs on all platforms. – Oli Sep 21 '08 at 19:02
+1 on the note that this is true, but having a profiler like Firebug is still great, if not essential, to find bottlenecks. – Pekka 웃 Dec 10 '09 at 21:23

You could use this: http://getfirebug.com/js.html. It has a profiler for JavaScript.

share|improve this answer

I think JavaScript performance (time) testing is quite enough. I found a very handy article about JavaScript performance testing here.

share|improve this answer

I find execution time to be the best measure.

share|improve this answer
As opposed to what? I'm not sure I understand. – Pekka 웃 Dec 10 '09 at 21:24
As opposed to the orignal posters question: "CPU Cycles, Memory Usage, Execution Time, etc.?" – snicker Dec 10 '09 at 21:30

Here is a simple function that displays the execution time of a passed in function.

var perf = function (testName, fn) {
  var startTime = new Date().getTime();
  fn();
  var endTime = new Date().getTime();
  console.log(testName + ": " + (endTime - startTime) + "ms");
}
share|improve this answer

I usually just test javascript performance, how long script runs. jQuery Lover gave a good article link for testing javascript code performance, but the article only shows how to test how long your javascript code runs. I would also recommend reading article called "5 tips on improving your jQuery code while working with huge data sets".

share|improve this answer

You could use console.profile in firebug

share|improve this answer

Chrome has some good tools built in for this.

share|improve this answer

The golden rule is to NOT under ANY circumstances lock your users browser. After that, I usually look at execution time, followed by memory usage (unless you're doing something crazy, in which case it could be a higher priority).

share|improve this answer

Responsiveness generally means that the page can react as fast as I can do stuff if I were the Flash. Don't make the Flash wait.

Release early and often, and collect analytics. As soon as your code isn't crap, give it to some people to try out, and use analytics to measure (among other things) performance metrics that impact perceived responsiveness, specifically, time between user inputs.

For example, when a user clicks on the "submit" button and a form appears, then starts typing into the form, how long between click and typing? If one form takes much longer than the rest, then there is a problem in the code or the UX design or both.

share|improve this answer
1  
If the OP knows the term "performance test", you can be pretty certain he knows this stuff already. This answer provides no information about the tools or methods useful for performance testing. – Jukka Dahlbom Jan 14 at 8:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.