Я хотел бы загрузить файл с помощью Electron и сохранить мой файл в пути.
Итак, у меня есть запрос с net
модулем, createWriteStream
с моим путем:
const out = fs.createWriteStream(configuration.localFile);
const request = net.request(arg);
request.pipe(out); // Error: request.pipe is not a function
request
.on('response', ...
В документе ClientRequest
я вижу ClientRequest implements the Writable Stream interface and is therefore an EventEmitter.
Кто-нибудь может мне помочь?
Спасибо, сообщество!