管道到需要既可读又可写的流

时间:2015-11-16 03:35:27

标签: node.js stream

我希望能够从src流传输到something流。我知道something需要是一个可写的流,因为它正在被管道传输,但是,它也需要是一个可读的流,以便它可以管道到somethingElse'. What should某些东西返回以便制作这项工作?

example.task('taskOne', function() {
  return example
    .src('pathName')
    .pipe(something())
    .pipe(somethingElse())
});

1 个答案:

答案 0 :(得分:0)

解决!

利用节点模块through2解决了这个问题。