使用带有Electron ClientRequest模块的管道

时间:2018-04-27 11:49:38

标签: node.js electron

我想用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.

任何人都可以帮助我?

谢谢社区!

0 个答案:

没有答案