vPromise

September 12, 2016 ยท View on GitHub

A Promise Polyfill with an Apache 2.0 License.

Promises/A+ logo

Current results of the Promises/A+ Test Suite. Build Status

Install: npm install vPromise

Usage:

const vPromise = require('vPromise');

var vp = new vPromise(function (resolve) {
   resolve('some val');
}).then(function(result) {
   console.log(result);
});`

Todo

  • Try to hide some book keeping