Good stuff! Great tests,...<p>When reading through jQuery's decision to stick with their implementation of promises, a mention of performance considerations piqued my curiosity and I decided to do a quick performance test. I used Benchmark.js and tested the results of creating and resolving a deferred object with a success handler in .then().<p>The results:<p>jQuery 91.6kb When.js 1.04kb Q.js 8.74kb
9,979 ops/sec ±10.22% 96,225 ops/sec ±10.10% 2,385 ops/sec ±3.42%
Note: minified with Closure compiler, not gzipped<p>After running these tests, I discovered a much more in-depth test-suite of promise libraries which reveals similar overall results.