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
<!-- Jquery -->
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<!-- Angular -->
<div ng-app>
<p>Angular:</p>
<span ng-controller="Ctrl" id="angList"><span ng-repeat="item in data">{{item}}</span></span>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script>
var Ctrl = function($scope){
$scope.data = [];
}
angular.element(document).ready(function() {
window.ANGAPP = {
scope: $('#angList').scope(),
push: function(data){
this.scope.data.push(data);
},
clear: function(){
this.scope.data = [];
this.scope.$digest();
}
};
});
</script>
<!--Backbone-->
<script src="https://underscorejs.org/underscore.js"></script>
<script src="https://backbonejs.org/backbone.js"></script>
<div id="backboneapp">
<h3>Backbone</h3>
<span class="backbone-items"></span>
</div>
<script>
var backboneCollection = new Backbone.Collection([]);
var backboneView = Backbone.View.extend({
initialize: function() {
this.listenTo(this.model, 'change', this.render)
},
render: function() {
this.$el.html(this.model.models)
},
push: function(i) {
this.model.push(i);
},
clear: function() {
this.model.reset([]);
}
});
window.BB = new backboneView({model: backboneCollection, el: "#backboneapp .backbone-items"});
</script>
<!-- CanJS -->
<script src="http://canjs.com/release/1.1.7/can.jquery.js"></script>
<div id="canjsejsapp"></div>
<div id="canjsejsappalt"></div>
<script id='canjsEJSTemplate' type='text/ejs'>
<h3>CanJS (EJS):</h3>
<span class="canjs-items"><% items.each(function(item) { %><%= item %><% }) %></span>
</script>
<script id='canjsEJSTemplateAlt' type='text/ejs'>
<h3>CanJS (Alt):</h3>
<span class="canjs-items"><% items.each(function(item) { %><%= item %><% }) %></span>
</script>
<script>
var canjsListAlt = new can.Observe.List([]);
var canjsList2 = new can.Observe.List([]);
var canjsControl = can.Control.extend({
init: function(el, options) {
this.element.html(can.view(this.options.template, { items: this.options.items }));
},
push: function(i) {
this.options.items.push(i);
},
clear: function() {
this.options.items.splice(0);
}
});
window.CanJSEJS = new canjsControl('#canjsejsapp', {
template: 'canjsEJSTemplate',
items: canjsList2
});
var canjsControlAlt = can.Control.extend({
defaults : {view: 'canjsEJSTemplateAlt'}
},{
init: function(element, options){
this.element.html(this.options.view, {items: this.options.items});
},
push: function(i){
this.options.items.push(i);
},
clear: function(){
this.options.items.splice(0);
}
});
window.CanJSAlt = new canjsControlAlt('#canjsejsappalt',{
items: canjsListAlt
});
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Can |
| ready |
Knockout |
| ready |
Ember |
| ready |
Angular |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.