文件名称:mintee:一个微型模块,用于将输入管道传输到多个输出流
文件大小:18KB
文件格式:ZIP
更新时间:2024-06-02 12:12:12
JavaScript
薄荷糖 这是一个很小的模块,用于将输入安全地输送到多个输出流。 当所有写入的可写流都写入'finish'时,它发出'finish' 。 用法 const Tee = require ( 'mintee' ) const tee = new Tee ( output1 , output2 , output3 ) tee . on ( 'finish' , ( ) => { console . log ( 'wrote to all three via tee' ) } ) input . pipe ( tee )
【文件预览】:
mintee-master
----.gitignore(43B)
----package.json(462B)
----package-lock.json(100KB)
----LICENSE(756B)
----index.js(892B)
----README.md(366B)
----test()
--------basic.js(1KB)