21

我正在通过双工字符串(由through提供)传输文件,并且在将信息打印到文件stdout 写入文件时遇到问题。一个或另一个工作得很好。

var fs = require('fs');
var path = require('path');
var through = require('through'); // easy duplexing, i'm young


catify = new through(function(data){
    this.queue(data.toString().replace(/(woof)/gi, 'meow'));
});

var reader = fs.createReadStream('dogDiary.txt'); // woof woof etc.
var writer = fs.createWriteStream(path.normalize('generated/catDiary.txt')); // meow meow etc.

// yay!
reader.pipe(catify).pipe(writer)

// blank file. T_T
reader.pipe(catify).pipe(process.stdout).pipe(writer) 

我假设这是因为process.stdout它是一个可写的流,但我不确定如何做我想要的(我试过传递{end: false}无济于事)。

仍在努力将我的头包裹在溪流中,如果我错过了一些明显的东西,请原谅我:)

4

1 回答 1

31

我想你想要的是:

reader.pipe(catify)
catify.pipe(writer)
catify.pipe(process.stdout)

这些需要分开,因为管道返回它们的目的地而不是它们的源。

于 2013-07-23T23:06:17.580 回答