如何从Node.Js中的字符串创建流?

我正在使用ya-csv库,它希望将文件或流作为输入,但是我有一个字符串。

如何将该字符串转换为Node中的流?

Itachi2020/03/24 17:05:38

另一种解决方案是将read函数传递给Readable的构造函数(参见doc 流readeable选项

var s = new Readable({read(size) {
    this.push("your string here")
    this.push(null)
  }});

您可以使用s.pipe为例