0.1.5 • Published 7 years ago

love-letter v0.1.5

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Love Letter logo

Love Letter is a small Promise library for Node.JS that aims to be fast, while conforming to the Promises/A+ specification.

Installation

npm install love-letter

Example

Standard promise usage.

const LoveLetter = require('love-letter');

function doSomethingReallyLong() {
    return new LoveLetter(resolve => {
        let res = somethingReallyIntensive();

        resolve(res);
    });
}

doSomethingReallyLong().then(console.log);

To-Do

  • Become fully compliant with the Promises/A+ specification.
  • Become faster while still being compliant.
0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago