JSPM

  • Created
  • Published
  • Downloads 32307
  • Score
    100M100P100Q173677F
  • License MIT

Package Exports

  • aigle

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (aigle) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Aigle

npm CircleCI branch Codecov branch

Aigle is an ideal promise library.
Aigle is never slow down even if you mix different Aigle versions and other promise libraries.
All Aigle class is extended by same Aigle-Core. (benchmark is here)

Also Aigle has a lot of async functions, you can start to use Promise easily.

Let's stop using Async and start using Aigle.

Usage

node

npm install --save aigle
const Promise = require('aigle');

browser

Recommend to use webpack, browserify, Rollup or any bundling tool.

or prebuilt scripts from here.

This will expose to global as window.Promise.

<script src="dist/aigle.min.js"></script>
window.Promise;