Angular VS Ember VS Backbone VS CanJS VS Knockout (v49)

Revision 49 of this benchmark created by taheta on


Preparation HTML

<script src="https://code.jquery.com/jquery-1.11.1.min.js">
</script>

<!-------- Angular -------->
<div ng-app="ANGAPP" id="angapp" ng-controller="Ctrl">
        <h3>Angular</h3>
        <span ng-repeat="item in items">{{item}}</span>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js">
</script>

<script>
angular.module('ANGAPP', [])
        .controller('Ctrl', function($scope) {
        $scope.items = [];
    $scope.clear = function(){$scope.items = [];};
    $scope.push = function(item){ $scope.items.push(item);};
        window.ANG = {
      $scope : $scope
        };
        });
</script>
<!-------- End Angular -------->


<!-------- CanJS -------->
<script src="http://canjs.com/release/1.1.7/can.jquery.js"></script>
<script src="http://canjs.com/release/1.1.7/can.view.mustache.js"></script>
<div id="canjsmustacheapp"></div>
<div id="canjsejsapp"></div>

<script id='canjsMustacheTemplate' type='text/mustache'>
  <h3>CanJS (Mustache):</h3>
  <span class="canjs-items">{{#items}}{{.}}{{/items}}</span>
</script>

<script>
var canjsList1 = 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, this.options.items.length);
  }
});

window.CanJS = new canjsControl('#canjsmustacheapp', {
    template: 'canjsMustacheTemplate',
    items: canjsList1
});
</script>
<!-------- End CanJS -------->


<!-------- Backbone-------->
<div id="backboneapp">
  <h3>Backbone</h3>
  <span class="backbone-items"></span>
</div>

 <script src="http://underscorejs.org/underscore-min.js"></script>
 <script src="http://backbonejs.org/backbone-min.js"></script>
<script>
// Backbone.js
var BackboneView = Backbone.View.extend({
  push: function(i) {
    this.$el.append(i);
  },
  clear: function() {
    this.$el.html('');
  }
});

BB = new BackboneView ({el: "#backboneapp .backbone-items"});
</script>
<!-------- End Backbone -------->



<!-------- Ember-------->
<div id="emapp">
  <h3>Ember:</h3>
  <script type="text/x-handlebars">
    <span>
      {{#each EMapp.data}}<span>{{this}}</span>{{/each}}
    </span>
  </script>
</div>

<script src="http://builds.emberjs.com/handlebars-1.0.0-rc.4.js"></script>
<script src="http://builds.emberjs.com.s3.amazonaws.com/ember-1.0.0-rc.6.min.js"></script>

<script>
  EMapp = Ember.Application.create({
    rootElement: $('#emapp')
  });
  EMapp.data = Ember.A();
  
  EMclear = function () {
    EMapp.get('data').clear();
  };
  EMreset = function () {
    EMapp.set('data', Ember.A());
  };
  EMpush = function (data) {
    EMapp.get('data').pushObject(data);
  };
</script>
<!-------- End Ember -------->

Test runner

Ready to run.

Testing in
TestOps/sec
Angular
ANG.$scope.clear();
for (var i = 0; i < 50; i++) {
  ANG.$scope.push(i);
}
ANG.$scope.$apply();
ready
CanJS
CanJS.clear()
for (var i = 0; i < 50; i++) {
  CanJS.push(i)
}
ready
Backbone
BB.clear();
for (var i = 0; i < 50; i++) {
  BB.push(i);
}
ready
Ember
EMclear();
for (var i = 0; i < 50; i++) {
  EMpush(i);
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.