Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "async-try", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "lodash": "^2.4.1" |
@@ -1,2 +0,46 @@ | ||
TRY | ||
=== | ||
async-try, helper module to debug asyncronous code. | ||
usage: | ||
``` | ||
var _ = require("lodash"); | ||
var TRY = require("async-try").TRY; | ||
var waitForIt = _.curry(function(time, callback){ | ||
console.log("this module is legen..."); | ||
console.log("...wait for it..."); | ||
if ( time > 3 ){ | ||
setTimeout(function(){ | ||
console.log("...dary"); | ||
}, time*1000 ); | ||
callback(null, "legendary!"); | ||
} else { | ||
callback("need more patience"); | ||
} | ||
}); | ||
var throwErr = function(error){ | ||
Throw new Error(error); | ||
} | ||
``` | ||
Then for | ||
``` | ||
TRY( "waiting for it", waitForIt(5), throwErr, function(result){ | ||
console.log("This module is " + result); | ||
}) | ||
``` | ||
we get | ||
``` | ||
this module is legen... | ||
...wait for it... | ||
...dary | ||
This module is legendary! | ||
``` | ||
But for | ||
``` | ||
TRY( "waiting for it", waitForIt(2), throwErr, function(result){ | ||
console.log("This module is " + result); | ||
}) | ||
``` | ||
1492
47