проксировать byte-Response делал так:
request(
requestReportUrl
)
.on('response', function (mes) {
response.writeHead(code, {
'Content-Type': 'application/pdf',
'Content-Disposition': ('attachment; filename=\"' + fileName + '"'),
});
})
.pipe(response)
как сделать то же самое с node-fetch?
без потери времени на парсинг в array?
@nodejs_ru
Обсуждают сегодня