Node.js将同一可读流传输到多个(可写)目标中

Node.js将同一可读流传输到多个(可写)目标中,第1张

Node.js将同一可读流传输到多个(可写)目标中

您必须通过将其输送到两个流中来创建流的副本。您可以使用PassThrough流创建简单流,只需将输入传递到输出即可。

const spawn = require('child_process').spawn;const PassThrough = require('stream').PassThrough;const a = spawn('echo', ['hi user']);const b = new PassThrough();const c = new PassThrough();a.stdout.pipe(b);a.stdout.pipe(c);let count = 0;b.on('data', function (chunk) {  count += chunk.length;});b.on('end', function () {  console.log(count);  c.pipe(process.stdout);});

输出:

8hi user


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存