JavaScript Object Oriented Libraries Benchmark
JavaScript performance comparison
Info
=== FULL TEST ==
MooTools and Ext Core are removed because they add extra information into native classes. They slow down other libraries.
Ext Core OOP is fast, MooTools OOP is super slow!
TODO: - Add YUI
Preparation code
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jsface.js">
</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/my.class.js">
</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jrclass.js">
</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/klass.js">
</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/classy.js">
</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/ptclass.js">
</script>
<script src="https://raw.github.com/javascript/augment/master/lib/augment.js">
</script>
<script src="http://cdn.sencha.com/ext-4.1.1a-gpl/builds/ext-foundation.js">
</script>
<script src="https://raw.github.com/torworx/ovy/master/ovy.js">
</script>
<script src="http://indigounited.com/dejavu/dejavu.js">
</script>
<script>
var __hasProp = {}.hasOwnProperty,
__extends = function(child, parent) {
for (var key in parent) {
if (__hasProp.call(parent, key)) child[key] = parent[key];
}
function ctor() {
this.constructor = child;
}
ctor.prototype = parent.prototype;
child.prototype = new ctor();
child.__super__ = parent.prototype;
return child;
};
var JSFacePerson = jsface.Class({
constructor: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var JSFaceFrenchGuy = jsface.Class(JSFacePerson, {
constructor: function(name) {
JSFaceFrenchGuy.$super.call(this, name);
},
setAddress: function(city, street) {
JSFaceFrenchGuy.$superp.setAddress.call(this, 'France', city, street);
}
});
var JSFaceParisLover = jsface.Class(JSFaceFrenchGuy, {
constructor: function(name) {
JSFaceParisLover.$super.call(this, name);
},
setAddress: function(street) {
JSFaceParisLover.$superp.setAddress.call(this, 'Paris', street);
}
});
var MyPerson = my.Class({
constructor: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var MyFrenchGuy = my.Class(MyPerson, {
constructor: function(name) {
MyFrenchGuy.Super.call(this, name);
},
setAddress: function(city, street) {
MyFrenchGuy.Super.prototype.setAddress.call(this, 'France', city, street);
}
});
var MyParisLover = my.Class(MyFrenchGuy, {
constructor: function(name) {
MyParisLover.Super.call(this, name);
},
setAddress: function(street) {
MyParisLover.Super.prototype.setAddress.call(this, 'Paris', street);
}
});
var JRPerson = JRClass.extend({
init: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
},
sayHello: function() {
console.log('I am ' + this.name + '. My address is ' + this.country + ', ' + this.city + ', ' + this.street + '.');
}
});
var JRFrenchGuy = JRPerson.extend({
init: function(name) {
this._super(name);
},
setAddress: function(city, street) {
this._super('France', city, street);
}
});
var JRParisLover = JRFrenchGuy.extend({
init: function(name) {
this._super(name);
},
setAddress: function(street) {
this._super('Paris', street);
}
});
var EnderPerson = klass(function(name) {
this.name = name;
}).methods({
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var EnderFrenchGuy = EnderPerson.extend(function(name) {}).methods({
setAddress: function(city, street) {
this.supr('France', city, street);
}
});
var EnderParisLover = EnderFrenchGuy.extend(function(name) {}).methods({
setAddress: function(street) {
this.supr('Paris', street);
}
});
var ClassyPerson = Classy.$extend({
__init__: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var ClassyFrenchGuy = ClassyPerson.$extend({
__init__: function(name) {
this.$super(name);
},
setAddress: function(city, street) {
this.$super('France', city, street);
}
});
var ClassyParisLover = ClassyFrenchGuy.$extend({
__init__: function(name) {
this.$super(name);
},
setAddress: function(street) {
this.$super('Paris', street);
}
});
var PTClassPerson = PTClass.create({
initialize: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var PTClassFrenchGuy = PTClass.create(PTClassPerson, {
initialize: function($super, name) {
$super(name);
},
setAddress: function($super, city, street) {
$super('France', city, street);
}
});
var PTClassParisLover = PTClass.create(PTClassFrenchGuy, {
initialize: function($super, name) {
$super(name);
},
setAddress: function($super, street) {
$super('Paris', street);
}
});
var CoffeePerson = (function() {
function CoffeePerson(name) {
this.name = name;
}
CoffeePerson.prototype.setAddress = function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
};
return CoffeePerson;
})();
var CoffeeFrenchGuy = (function(_super) {
__extends(CoffeeFrenchGuy, _super);
function CoffeeFrenchGuy(name) {
CoffeeFrenchGuy.__super__.constructor.call(this, name);
}
CoffeeFrenchGuy.prototype.setAddress = function(city, street) {
return CoffeeFrenchGuy.__super__.setAddress.call(this, "France", city, street);
};
return CoffeeFrenchGuy;
})(CoffeePerson);
var CoffeeParisLover = (function(_super) {
__extends(CoffeeParisLover, _super);
function CoffeeParisLover(name) {
CoffeeParisLover.__super__.constructor.call(this, name);
}
CoffeeParisLover.prototype.setAddress = function(street) {
return CoffeeParisLover.__super__.setAddress.call(this, "Paris", street);
};
return CoffeeParisLover;
})(CoffeeFrenchGuy);
Ext.define('ExtPerson', {
constructor: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
Ext.define('ExtChinaGuy', {
extend: 'ExtPerson',
constructor: function() {
this.callParent(arguments);
},
setAddress: function(city, street) {
this.callParent(['China', city, street]);
}
});
Ext.define('ExtBeiJingLover', {
extend: 'ExtChinaGuy',
constructor: function(name) {
this.callParent(arguments);
},
setAddress: function(street) {
this.callParent(['BeiJing', street]);
}
});
var dejavuClassPerson = dejavu.Class.declare({
initialize: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var dejavuClassFrenchGuy = dejavu.Class.declare({
$extends: dejavuClassPerson,
setAddress: function(city, street) {
this.$super('France', city, street);
}
});
var dejavuClassParisLover = dejavu.Class.declare({
$extends: dejavuClassFrenchGuy,
setAddress: function(street) {
this.$super('Paris', street);
}
});
var dejavuClassPerson2 = dejavu.Class.declare({
initialize: function(name){
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
}, true);
var dejavuClassFrenchGuy2 = dejavu.Class.declare({
$extends: dejavuClassPerson2,
initialize: function (name) {
dejavuClassPerson2.call(this, name);
},
setAddress: function(city, street) {
dejavuClassPerson2.prototype.setAddress.call(this, 'France', city, street);
}
}, true);
var dejavuClassParisLover2 = dejavu.Class.declare({
$extends: dejavuClassFrenchGuy2,
initialize: function (name) {
dejavuClassFrenchGuy2.call(this, name);
},
setAddress: function(street) {
dejavuClassFrenchGuy2.prototype.setAddress.call(this, 'Paris', street);
}
}, true);
var dejavuClassPerson3 = dejavu.Class.declare(function () {
return {
initialize: function(name){
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
};
}, true);
var dejavuClassFrenchGuy3 = dejavuClassPerson3.extend(function ($super) {
return {
setAddress: function(city, street) {
$super.setAddress.call(this, 'France', city, street);
}
};
}, true);
var dejavuClassParisLover3 = dejavuClassFrenchGuy3.extend(function ($super) {
return {
setAddress: function(street) {
$super.setAddress.call(this, 'Paris', street);
}
};
}, true);
var OvyPerson = Ovy.define({
constructor: function(name) {
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var OvyChinaGuy = Ovy.define({
extend: OvyPerson,
constructor: function(name) {
OvyChinaGuy.$superclass.call(this, name)
},
setAddress: function(city, street) {
OvyChinaGuy.$super.setAddress.call(this, 'China', city, street);
}
});
var OvyBeijingLover = Ovy.define({
extend: OvyChinaGuy,
constructor: function(name) {
OvyBeijingLover.$superclass.call(this, name);
},
setAddress: function(street) {
OvyBeijingLover.$super.setAddress.call(this, 'Beijing', street);
}
});
var AugmentPerson = Object.augment(function() {
this.constructor = function (name) {
this.name = name;
};
this.setAddress = function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
};
});
var AugmentFrenchGuy = AugmentPerson.augment(function(base) {
var setAddress = base.setAddress;
this.constructor = function (name) {
AugmentPerson.call(this, name);
};
this.setAddress = function(city, street) {
setAddress.call(this, "France", city, street);
};
});
var AugmentParisLover = AugmentFrenchGuy.augment(function(base) {
var setAddress = base.setAddress;
this.constructor = function (name) {
AugmentFrenchGuy.call(this, name);
};
this.setAddress = function(street) {
setAddress.call(this, "Paris", street);
};
});
var NativePerson = function(name){
this.name = name;
};
NativePerson.prototype.setAddress = function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
};
var NativeFrenchGuy = function(name) {
NativePerson.call(this, name);
};
NativeFrenchGuy.prototype = Object.create(NativePerson.prototype);
NativeFrenchGuy.prototype.constructor = NativeFrenchGuy;
NativeFrenchGuy.prototype.setAddress = function(city, street) {
NativePerson.prototype.setAddress.call(this, 'France', city, street);
};
var NativeParisLover = function(name) {
NativeFrenchGuy.call(this, name);
};
NativeParisLover.prototype = Object.create(NativeFrenchGuy.prototype);
NativeParisLover.prototype.constructor = NativeParisLover;
NativeParisLover.prototype.setAddress = function(street) {
NativeFrenchGuy.prototype.setAddress.call(this, 'Paris', street);
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
JSFace |
|
pending… |
my.Class |
|
pending… |
John Resig Class |
|
pending… |
Klass |
|
pending… |
Classy |
|
pending… |
PTClass |
|
pending… |
CoffeeScript Classes |
|
pending… |
augment |
|
pending… |
Ext JS |
|
pending… |
Ovy |
|
pending… |
dejavu |
|
pending… |
dejavu optimized |
|
pending… |
dejavu optimized closures |
|
pending… |
Native |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 3: published by Tan Nhu
- Revision 4: published
- Revision 5: published by Tan Nhu
- Revision 6: published by Tan Nhu
- Revision 7: published by Tan Nhu
- Revision 8: published by Tan Nhu
- Revision 9: published by Tan Nhu
- Revision 10: published by Tan Nhu
- Revision 11: published by André Cruz
- Revision 13: published by André Cruz
- Revision 14: published
- Revision 15: published by Tan Nhu
- Revision 16: published
- Revision 17: published
- Revision 18: published
- Revision 19: published
- Revision 21: published
- Revision 22: published
- Revision 25: published
- Revision 27: published
- Revision 28: published
- Revision 29: published
- Revision 38: published
- Revision 39: published
- Revision 40: published
- Revision 41: published
- Revision 51: published by André Cruz
- Revision 52: published by André Cruz
- Revision 54: published by André Cruz
- Revision 58: published by André Cruz
- Revision 61: published by Nodir Turakulov
- Revision 62: published by Airy
- Revision 64: published
- Revision 69: published
- Revision 70: published by André Cruz
- Revision 77: published by André Cruz
- Revision 79: published by André Cruz
- Revision 83: published
- Revision 84: published by Aadit M Shah
- Revision 85: published by Aadit M Shah
- Revision 86: published by Yuan Tao
- Revision 88: published
- Revision 89: published by Aadit M Shah
- Revision 90: published by Yuan Tao
- Revision 91: published by Aadit M Shah
- Revision 92: published by Yuan Tao
- Revision 93: published by Yuan Tao
- Revision 94: published by Aadit M Shah
- Revision 95: published by Aadit M Shah
- Revision 96: published by Yuan Tao
- Revision 97: published by Aadit M Shah
- Revision 98: published by Yuan Tao
- Revision 100: published by Yuan Tao
- Revision 104: published
- Revision 105: published by Aadit M Shah
- Revision 106: published by Yuan Tao
- Revision 107: published by André Cruz
- Revision 108: published by Aadit M Shah
- Revision 109: published by Mark Johnson
- Revision 110: published by Mark Johnson
- Revision 111: published by Mark Johnson
- Revision 112: published
- Revision 113: published
- Revision 117: published by Aadit M Shah
- Revision 118: published by Aadit M Shah
- Revision 119: published by Yannick Albert and last updated
- Revision 122: published
- Revision 124: published
- Revision 127: published by Aadit M Shah
- Revision 128: published and last updated
0 comments