jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
A performance test to measure the impact of how regular expressions are used in a templating system.
<script>
var data1 = {
"test1": "value1",
"test2": "value2",
"test3": "value3"
}
var template1 = "This is {test1} to see how fast different {test2}-replacement techniques perform! ({test3})";
var sRE = /{([^}]+)}/gi;
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Dynamic Regular Expressions |
| ready |
Static Regular Expression |
| ready |
Static Regular Expression, created in loop |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.