Для некоторых веб-сайтов прямые вызовы http / https блокируются, поэтому вам необходимо использовать прокси-сервер.Я поместил facebook.com в качестве примера, я бы порекомендовал создать прокси самостоятельно.
const request = require('request');
const fs = require('fs');
const httpsProxyAgent = require('https-proxy-agent');
const agent = new httpsProxyAgent("http://facebook.com");
const options = {
url: 'https://orchard.vn/wp-content/uploads/woo-feed/google/csv/201803_google_shopping.csv',
path: '/',
agent: agent
};
request
.get(options)
.on('error', function(err) {
console.log(err)
})
.pipe(fs.createWriteStream('./test.csv'))