lie
A minimal and fast promise implementation
Last updated 11 years ago by cwmma .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install lie 
SYNC missed versions from official npm registry.

lie

Promises/A+ logo [![Build Status](https://travis-ci.org/calvinmetcalf/lie.svg)](https://travis-ci.org/calvinmetcalf/lie)

lie is a small, performant promise library implementing the Promises/A+ spec (Version 1.1).

Originally a fork of Ruben Verborgh's promiscuous, with version 2.6 it became a fork of ayepromise by Chris Burgmer.

npm install lie

var Promise = require('lie');
// or use the pollyfill
require('lie/polyfill');

Usage

Either use it with browserify (recommended) or grab one of the files from the dist folder:

  • lie.js/lie.min.js exposes 'Promise' either as a UMD module or from the global scope, depending on if a CJS or AMD loader is available.
  • lie.polyfill.js/lie.polyfill.min.js adds 'Promise' to the global scope only if it's not already defined (not a UMD).

API

Implements the standard ES6 api:

new Promise(function(resolve, reject){
    doSomething(function(err, result) {
        if (err) {
            reject(err);
        } else {
            resolve(result);
        }
    });
}).then(function (value) {
    //on success
}, function (reason) {
    //on error
}).catch(function (reason) {
    //shortcut for error handling
});

Promise.all([
    //array of promises or values
]).then(function ([/* array of results */]));

Promise.race([
    //array of promises or values
]);
// either resolves or rejects depending on the first value to do so

Unhandled Rejections

In Node.js, lie emits an unhandledRejection event when a rejected promise isn't caught, in line with how io.js does it. This allows it to act as a promise shim in both Node.js and the browser.

Current Tags

  • 3.3.0                                ...           latest (7 years ago)

47 Versions

  • 3.3.0                                ...           7 years ago
  • 3.2.0                                ...           7 years ago
  • 3.1.1                                ...           8 years ago
  • 3.1.0                                ...           9 years ago
  • 3.0.4                                ...           9 years ago
  • 3.0.3                                ...           9 years ago
  • 3.0.2                                ...           9 years ago
  • 3.0.1                                ...           10 years ago
  • 3.0.0                                ...           10 years ago
  • 2.9.1                                ...           10 years ago
  • 2.9.0                                ...           10 years ago
  • 2.8.1                                ...           10 years ago
  • 2.8.0                                ...           11 years ago
  • 2.7.7                                ...           11 years ago
  • 2.7.6                                ...           11 years ago
  • 2.7.5                                ...           11 years ago
  • 2.7.4                                ...           11 years ago
  • 2.7.3                                ...           11 years ago
  • 2.7.2                                ...           11 years ago
  • 2.7.0                                ...           11 years ago
  • 2.6.0                                ...           11 years ago
  • 2.5.4                                ...           11 years ago
  • 2.5.3                                ...           11 years ago
  • 2.5.2                                ...           11 years ago
  • 2.5.1                                ...           11 years ago
  • 2.5.0                                ...           11 years ago
  • 2.4.0                                ...           11 years ago
  • 2.3.0                                ...           11 years ago
  • 2.2.1                                ...           11 years ago
  • 2.2.0                                ...           11 years ago
  • 2.1.0                                ...           11 years ago
  • 2.0.7                                ...           11 years ago
  • 2.0.6                                ...           11 years ago
  • 2.0.5                                ...           12 years ago
  • 2.0.3                                ...           12 years ago
  • 2.0.1                                ...           12 years ago
  • 2.0.0                                ...           12 years ago
  • 1.4.0                                ...           12 years ago
  • 1.3.0                                ...           12 years ago
  • 1.1.0                                ...           12 years ago
  • 1.0.3                                ...           12 years ago
  • 1.0.0                                ...           12 years ago
  • 0.6.2                                ...           12 years ago
  • 0.6.1                                ...           12 years ago
  • 0.6.0                                ...           12 years ago
  • 0.5.1                                ...           12 years ago
  • 0.5.0                                ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 3
Last Month 161
Dependencies (1)
Dev Dependencies (9)
Dependents (3)

Copyright 2013 - present © cnpmjs.org | Home |