npm install es6-promises
To use the Promise polyfill, just drop two JavaScript files into your page:
``html``
or load as the Node.js module:javascript`
var Promise = require('es6-promises');
Download the latest Promise polyfill from GitHub.
npm
``
npm install es6-promises`
Bower`
bower install promises
The Promise polyfill requieres setImmediate (msdn, nodejs, polyfill).
Promises/A+ compliant
```
git clone https://github.com/Octane/Promise.git
cd Promise
npm install
npm test
The Promise polyfill is released under the MIT license.