小编典典

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

javascript

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

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


阅读 479

收藏
2020-05-01

共1个答案

小编典典

从节点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"`
})
2020-05-01