Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lanfei/deferred-lib

A lightweight implementation of Deferred/Promise.
https://github.com/lanfei/deferred-lib

deffered promise

Last synced: 5 days ago
JSON representation

A lightweight implementation of Deferred/Promise.

Awesome Lists containing this project

README

        

# Deferred

A lightweight implementation of Deferred/Promise.

[![NPM](https://nodei.co/npm/deferred-lib.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/deferred-lib)

## Installation

### Node

```bash
$ npm install deferred-lib
```

### Browser

```html

```

## Usage

```js
// Usage 1
// Declare the deferred instance and use it.
function countdown1() {
var deferred = new Deferred();
var i = 5;
var timer = setInterval(function () {
deferred.notify(i);
if (i-- === 0) {
deferred.resolve('Hi');
clearInterval(timer);
}
}, 300);
return deferred.promise();
}

countdown1().progress(function (step) {
console.log('countdown1', step);
}).done(function () {
console.log('countdown1 done');
});

// Usage 2
// Use `Deferred(fn)` and get the deferred instance with `this` context.
function countdown2() {
var self = this;
var i = 5;
var timer = setInterval(function () {
self.notify(i);
if (i-- === 0) {
self.resolve('Hi');
clearInterval(timer);
}
}, 300);
}

Deferred(countdown2).progress(function (step) {
console.log('countdown2', step);
}).done(function () {
console.log('countdown2 done');
});
```

**See `examples` directory for more usages.**