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

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

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

回答:

从节点12.3开始,stream.Readable有一个from方法可以轻松地从任何可迭代对象(包括数组文字)创建流:

const { Readable } = require('stream')

const readable = Readable.from('input string')

readable.on("data", (chunk) => {

console.log(chunk) // will be called once with `"input string"`

})

以上是 如何从Node.Js中的字符串创建流? 的全部内容, 来源链接: utcz.com/qa/412261.html

回到顶部