Skip to content

nadirabid/async-underscore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

About

Being able able to make asynchronous requests and inlining any processing in the form of map, each and reduce is very powerfull. Don't really need to wait for JavaScript generators to take advantage of clean asynchronous programming.

Time to take a lesson from C#.

Example Usage

var dfd = $.Deferred();
_(dfd).map(function(v) {
	console.log("Value: ", v);
});

console.log("Now resolving deferred collection.");
dfd.resolve([1,2,3,4]);


//Example output:
> Now resolving deferred collection.
> Value: 1
> Value: 2
> Value: 3
> Value: 4

Road Map

Lots of things I'd like to do.

I think Underscore.js is becoming the practical JS developer utility that it should have been long time ago. The thing its weak on is in the department of Deferreds which jQuery has done well in.

  • Get rid of jQuery dependency and use underscore.deferred.js
  • Some task.js integration. Who needs to wait for generators.
  • Specialized map, each, and reduce methods that can deal with arrays of deferreds.
  • Anything else?

About

Underscore Deferred

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published