如何在Node.js中一次将一个可读流传输到两个可写流中?

如何在Node.js中一次将一个可读流传输到两个可写流中?,第1张

如何在Node.js中一次将一个可读流传输到两个可写流中?

我发现zlib返回了一个可读流,该流随后可通过管道传递到多个其他流中。因此,我执行以下 *** 作来解决上述问题:

var sourceFileStream = fs.createReadStream(sourceFile);// Even though we could chain like// sourceFileStream.pipe(zlib.createGzip()).pipe(response);// we need a stream with a gzipped data to pipe to two// other streams.var gzip = sourceFileStream.pipe(zlib.createGzip());// This will pipe the gzipped data to response object// and automatically close the response object.gzip.pipe(response);// Then I can pipe the gzipped data to a file.gzip.pipe(fs.createWriteStream(targetFilePath));


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5172290.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存