Answer the question
In order to leave comments, you need to log in
How to download a large number of photos with links to them?
There is a file with links (photos), about 4k. Do they all need to be downloaded? Manually this is generally nonsense) How to automate the process?
Answer the question
In order to leave comments, you need to log in
For example, using the download module
const download = require('download');
Promise.all([
//массив ссылок
].map(x => download(x, 'dist'))).then(() => {
console.log('files downloaded!');
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question