promise-ts
v0.2.2
Published
TypeScript promises for Node.js.
Downloads
32
Readme
#promise-ts
Promises for Node.js, written in TypeScript and distributed in JavaScript, along with a TypeScript definition file at the root (promise.d.ts). These promise classes and functions "mostly" behave like jQuery promises, so you can refer to jQuery documentation for more detailed information.
The following classes and function are made available to you:
- Deferred object (jQuery doc)
- Promise object (jQuery doc)
- when function (jQuery doc)
The only known differences between the jQuery counterparts are in cases like
jQuery's deferred.done, where the documentation states, "The deferred.done()
method accepts one or more arguments, all of which can be either a single function
or an array of functions." In this library's case, it's just a TypeScript
(...callbacks: Function[])
method signature. Contributions are welcome to fix
this, but I didn't have the need to go down that road myself.
Example Usage
TypeScript
///<reference path='node_modules/promise-ts/promise-ts.d.ts'/>
import promise = require('promise-ts');
var Deferred = promise.Deferred;
var when = promise.when; // not used in this example, but handy.
function doSomethingAsync(): promise.Promise {
var d = new Deferred();
setTimeout(() => {
// time consuming operations
d.resolve('foo');
});
return d.promise;
}
doSomethingAsync.done(result => {
// result === 'foo';
});
JavaScript
var promise = require('promise-ts');
var Deferred = promise.Deferred;
var when = promise.when; // not used in this example, but handy.
function doSomethingAsync() {
var d = new Deferred();
setTimeout(function() {
// time consuming operations
d.resolve('foo');
});
return d.promise;
}
doSomethingAsync.done(function(result) {
// result === 'foo';
});
See the specs for more examples. The library and specs have both been written to satisfy the jQuery usages.
License
MIT © Jed Mao