文件名称:fs-tail:tail -f 类似使用streams2和fs的功能
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-25 17:24:39
JavaScript
fs-tail node.js 的基于流的tail -f功能。 var FsTail = require ( "fs-tail" ) ; // Available options - defaults are shown. var options = { start : 0 //Start on byte 0 of file. EOFAfter : 500 //emit EOF after 500ms of no data. } ; var tail = FsTail ( "./someFile.txt" , options ) ; tail . on ( "EOF" , function ( ) { console . log ( "Reached end of file" ) ; } ) ; tail . pipe ( anotherStream ) ;
【文件预览】:
fs-tail-master
----.gitignore(31B)
----README.md(766B)
----LICENSE(1KB)
----package.json(750B)
----.jshintignore(24B)
----index.js(3KB)
----test.js(4KB)
----.travis.yml(39B)
----Makefile(353B)