I am trying to scrape a big list of pages from a website. Here is the axios request which I make :
Promise.all(urls.map((url, index) => axios(url))).then(function (values) {
........
});
The urls object just have a bunch of urls > 13000. If i keep that number to 200 the whole code works fine. But when I put in the entire object i get this:
errno: 'ENOTFOUND',
code: 'ENOTFOUND',
syscall: 'getaddrinfo',
I have read all the existing answers but nothing helped so please!