Skip to content

danthareja/robin-egg-bluebird

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Promises/A+ logo

Robin Egg Bluebird

A tiny Promises/A+ compliant implementation inspired by the official Crayola color.

Quick Start

npm install robin-egg-bluebird

then:

var Promise = require('robin-egg-bluebird');

Example

var myPromise = new Promise(function(resolve, reject) {
  // do something async...
    if (error) {
      reject(error);
    }
    resolve(successfulValue); // Pass to .then handler
});

myPromise().then(function(success) {
  // success is successfulValue from above
});

Implementation

Created with help of the Promises/A+ test suite

About

A tiny Promises/A+ compliant implementation inspired by the official Crayola color

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published