0.4.0 • Published 11 years ago

underscore.deferred v0.4.0

Weekly downloads
29,910
License
-
Repository
github
Last release
11 years ago

Underscore.Deferred

v0.1.3

This is a port of jQuery.Deferred as an Underscore mixin, but it can be used without any depencencies. It currently matches the Deferred specifications and implementation from jQuery 1.7.2, with all the associated helpers.

Deferred's are great, let's take them everywhere

jQuery offers a robust, consistent and well documented API; this project aims to make it portable. jQuery added a handful of helper methods to their implementation of the Common.js Promise Spec, and they're faithfully reproduced without any dependencies.

Underscore.Deferred supports the following methods:

For specific API documentation, look to the jQuery Docs.

Usage

Underscore.Deferred works on the server and in the browser.

In the browser, just require it like you would any other file. If you're including Underscore on the page, make sure you include it before Underscore.Deferred. If you don't have Underscore, the plugin attaches to window._.

Addionally, underscore.Deferred can be used with the Ender.js build tool, if you're into that sort of thing.

On the server, simply install via npm and require normally. If you'd like to use it as an Underscore module, just do this:

var _ = require('underscore')._
_.mixin( require('underscore.deferred') );

But keep in mind that Underscore is not a strict requirement, and assigning it to another namespace will always work.

Build

One time setup command:

$ npm install

To build with grunt

$ node build

To run headless Qunit tests (must have phantomjs in your path)

$ node build qunit

Contributors

Roadmap

The goal is to slim the code footprint for robust deferreds as much as possible while maintaining mixin integration with Underscore and faithfullness to the jQuery API.

This is a work in progress, feel free to contribute.

MIT License.