angular $q vs bluebird vs Q (v11)

Revision 11 of this benchmark created by senc on


Description

Simple comparison of promise creation and resolution between Angular's $q, bluebird, and native ES6 Promise (only in Chrome and FF).

Preparation HTML

<script>
window.NativePromise = Promise;
Q;
</script>

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.12/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/1.2.2/bluebird.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/q.js/1.1.0/q.js"></script>

<script>
window.$q = angular.injector(['ng']).get('$q');
</script>

<div ng-app="app"></div>

Test runner

Ready to run.

Testing in
TestOps/sec
Angular Promise instantiate and resolve
// async test
var d = $q(function(resolve) {
  resolve('foo');
}).then(function(value) {
  deferred.resolve(value);
});
 
ready
bluebird instantiate and resolve
// async test
var p = new Promise(function(resolve, reject) {
  resolve('foo');
}).
then(function() {
  deferred.resolve()
});
ready
Native
// async test
var p = new NativePromise(function(resolve, reject) {
  resolve('foo');
}).
then(function() {
  deferred.resolve()
});
ready
Q
// async test
var d = Q(function(resolve) {
  resolve('foo');
}).then(function(value) {
  deferred.resolve(value);
});
 
ready

Revisions

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