Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created July 19, 2015 03:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save joepie91/11e36819dcca49f54348 to your computer and use it in GitHub Desktop.
Error-tolerant promise map (Bluebird)
var bhttp = require("bhttp");
var urls = [
"http://google.com/",
"http://yahoo.com/",
"http://bing.com/" // Ha ha, just kidding who uses Bing anyway :)
];
Promise.try(function(){
/* There's a faster shorthand for this, but for illustrative purposes, we'll just return the array here and pretend that it was generated by something else, somehow. */
return urls;
}).map(function(url){
return Promise.try(function(){
return bhttp.get(url);
}).catch(function(err){
return null;
})
}).filter(function(response){
return (response != null);
}).map(function(response){
return response.body;
}).then(function(responseBodies){
/* Now `responseBodies` is an array of response bodies, one for each URL, in the original URL order. */
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment