I have this simple script:
request ({
method: 'GET',
url: 'https://www.link1.org/'
url: 'https://link2.net/'
}, function(err, response, body) {
//do stuff
}
It works fine with single url but how could i add another? I need it to get both urls.
Promise.all.