Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm really interested in implementing Promises and related features in client-side Javascript. From what I've seen, the focus in implementing these technologies in Javascript seems to be on server-side javascript (SSJS) with Promises in CommonJS. Ideally for me, I would find a solution that works well with jQuery or Google Closure Library, but I'm open to any solution.

  • Is it possible to use the CommonJS solution client-side? This Sitepen article has some great information on promises in CommonJS, but it is focused on SSJS.
  • What other libraries are available that implement promises that can easily work client-side?
  • What are your impressions, experience, and feedback on any toolkit you have used?

I've found a few client-side implementations, but I'm unclear on how robust they are. Is there any library that has become the de-facto standard? Is a mainstream library (like jquery) already working on something similar for a future release?

Any others? Anyone have experience with any of these and have a preference? Is one better than the others?

share|improve this question
+1 Just found out about Promises from your post. Looks like a very interesting way to deal with asynchrony. – Anurag Jul 14 '10 at 19:56
@Anurag: Yes, exactly. Right now I'm using all these nested callbacks and it's getting ridiculous. Promises seem like the perfect solution. – Tauren Jul 14 '10 at 20:01
you might also want to checkout this similar question I posted recently. It was inspired by Twitter's Anywhere API, and I did not know about Promises at that time, but they use a similar approach based on stacks to solve the problem. Promises, however, seems a much more cleaner way to deal with the issue of all those nested callbacks. I feel like writing one for MooTools right now :) – Anurag Jul 14 '10 at 20:05
@Anurag: Thanks, the Anywhere API definitely looks interesting too, I'll be looking into it more! – Tauren Jul 15 '10 at 17:46
I ended up using FutureJS and am happy with it so far. github.com/coolaj86/futures – Tauren Sep 14 '10 at 8:00
show 1 more comment

6 Answers

up vote 14 down vote accepted

I'm the developer of FutureJS - JavaScript's Async Toolbox TM (or at least that's the goal).

I started with the snippets from Crockford's slides. Here's the original & unadultered implementation. As I've run into more issues and have seen what others have done I continue to update the library with best-practice solutions.

If CommonJS ever makes an official standardization, I'd consider releasing a v3.x that caters to that, but currently Futures is fairly simple and does what it is designed to do.

I'd love to have you join the mailing list and give me your feedback and suggestions.

Other features of the library include:

  • asyncify
  • chainify
  • future
  • join
  • loop
  • sequence
  • forEachAsync

Each submodule can be easily installed or packaged on it's own

  • npm install future join
  • ender build future join

=8^D

P.S. FuturesJS will work alongside jQuery, Underscore.js, etc, in both Node.js and Ender.js. There are no dependencies. I believe that it will work with Rhino as well. If not, let me know and it should be a quick fix.

P.P.S. InfoQ has an article on several js async toolkits

share|improve this answer
Crockfords slides have been removed...can you save them again? – Prisoner ZERO Jul 25 '11 at 12:47
Hey, when are you going to do that article you mention in your documentation? – Prisoner ZERO Jul 25 '11 at 13:00
@Prisoner Zero: I updated the link back to the Crockford original and a link to an article that ran at InfoQ. Feel free to e-mail me with any specific questions. – CoolAJ86 Aug 3 '11 at 17:02

Kris Kowal's Q module can be used on the client side. It works with RequireJS, and it conforms to CommonJS/Promises/A, B, and D.

I haven't compared it to other implementations, but I use it, I like it, and it works for me.

share|improve this answer

http://www.sitepen.com/blog/2010/05/03/robust-promises-with-dojo-deferred-1-5/ should answer your question exactly

share|improve this answer
Interesting. The other sitepen article I referenced suggests that Dojo Deferreds have flaws. Maybe it was in reference to an earlier version. However, the issue for me is that it is part of Dojo, and my application is heavily based on jQuery. I don't want to include all of Dojo as well, but if there is a way to just import the Deferred functionality, that could work. – Tauren Jul 15 '10 at 17:36

I see this question is now two years old but I feel I should bring it back to life a little with the obvious answer that everybody reading this question surely knows by now...

jQuery has had support for Deferred (including .promise()) since version 1.5, which was released at the end of January 2011.

Currently I would say this is quite possibly the implementation of promises/futures with the most exposure, given the ubiquity of JavaScript in every web browser and the popularity of jQuery as one of the most well known JavaScript frameworks.

share|improve this answer
Yes, but jQuery has its own flavor of promises which are incompatible with libraries like Q, when.js, etc. Read this essay for more information. – Elliot Winkler Jan 15 at 17:57

Also, see the following on StackOverflow:

Do any IDEs/IDE plugins have support for JavaScript CommonJS modules?

share|improve this answer

There's a 1K implementation of Deferreds here:

https://gist.github.com/relay/3672350

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.