Skip to content

Instantly share code, notes, and snippets.

@aleksandar-b
Last active November 27, 2016 13:56
Show Gist options
  • Save aleksandar-b/e851d8b668851a435bc7d3a5360184a6 to your computer and use it in GitHub Desktop.
Save aleksandar-b/e851d8b668851a435bc7d3a5360184a6 to your computer and use it in GitHub Desktop.
var RP = require("request-promise");
async () => {
try {
var sites = await Promise.all([
RP("http://www.google.com"),
RP("http://www.apple.com"),
RP("http://www.yahoo.com")
]);
} catch(e){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment