Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

framework to performance test javascript

I am currently implementing a module observer pattern to a large scale web application that has a large dependency on javascript. I have introduced unit testing of each of the modules which I find very beneficial in capturing any issues with my javascript.

I would now also like to look at the possibility of performance testing my javascript. Are there any frameworks available where I can set up performance test for my javascript files?

like image 230
amateur Avatar asked Feb 16 '26 08:02

amateur


1 Answers

I'm familiar with the jsperf service for javascript performance testing. It is based on the benchmark.js benchmarking library. You could use use either depending upon the details of what you're looking for.

like image 59
jfriend00 Avatar answered Feb 17 '26 21:02

jfriend00