You cannot post messages because only members can post, and you are not currently a member.
Description:
A mailing list for the FuturesJS library.
|
|
|
Handling async requests. How?
|
| |
Hi, Sorry for the noob question, but I'm trying to wrap my head around using the futures library and I'm getting some strange behavior. In a nutshell, I want to be able to: 1. Issue several asynchronous requests in parallel 2. When all of these are done, run a modifier on all the result sets 3. When the modifier is done, return the result... more »
|
|
Heads up on API change
|
| |
I just bumped up the version to 2.2.0. In order to get FuturesJS to work with Ender.JS I separated all of the submodules into their own npm modules. i.e. npm install future join sequence chainify asyncify loop forEachAsync Array.prototype.forEachAsync instead of require('futures/forEachAsync' ) it's now... more »
|
|
Future of FuturesJS
|
| |
Sorry, I had a little fun with the subject... :) Now that I'm using the latest jQuery, which includes Deferred support, I'm finding that it is hard to justify including FuturesJS anymore. And there are already several other implementations in the CommonJS world, I'm not sure how much traction FuturesJS will be able to get anymore.... more »
|
|
Futures featured in InfoQ
|
| |
I'm really excited. FuturesJS has been featured by InfoQ alongside other asynchronous libraries by top-notch authors: [link] AJ ONeal
|
|
Futures v2.0 is just around the corner!
|
| |
I'm looking for feedback on the API before I finalize it. [link] The API is leaner, the code is leaner, and I've included Node.JS's EventEmitter (with minor modification so that it works in the browser). Notable Changes * all examples now use the function(err, data [, ...]) convention for... more »
|
|
Some examples
|
| |
I posted an answer on StackOverflow for someone asking about ordering ajax calls in an application and included some samples of using FuturesJS. Thought I'd post it here in case it interests anyone... [link]... more »
|
|
funny jokes clean . Crazy fun!
|
| |
It is realy crazy!))) . I love this one most of all!)))
[link]
related search words: funny blonde jokes , poems for kids , yo
momma jokes , christmas jokes , blonde jokes funny , short jokes ,
mexican jokes , mexicans jokes
|
|
TIP: rate-limit your "instant-search" with a Future
|
| |
I'm creating an instant-search widget for an API that has a slow response time. This demonstrates how to rate-limit such an instant search so that the search only occurs if a non-word character was entered (punctuation, etc) or if it has been 300ms since the last keystroke. var key_timeout = -1;... more »
|
|
AbstractHttpRequest now API compatible with Request
|
| |
Thanks for the idea. AHR can now be used exactly like `request` in node and the browser. var request = require('ahr'); request(options, callback); In fact, I added request's test cases to my own. Here's an example of other features and how to join them together. request.join( request({ uri: '/local-contacts' }),... more »
|
|
|