I\'ve become a skilled user of jQuery\'s new and amazing Deferred module, and as I\'m easing into using more of Node.js, I find myself wanting something exactly like it in m
If you want the same API, there's nothing stopping you from using jQuery itself under Node. Just npm install jquery, then:
npm install jquery
var $ = require('jquery'); var deferred = $.Deferred();