fsnotifier:跟踪追加到日志文件并发出事件

时间:2024-06-15 06:49:15
【文件属性】:

文件名称:fsnotifier:跟踪追加到日志文件并发出事件

文件大小:2KB

文件格式:ZIP

更新时间:2024-06-15 06:49:15

JavaScript

fsnotifier 用于跟踪的Node.js模块会附加到文件中。 fsnotifier将为文件的每个附加块发出change事件。 它连续轮询文件并等待其稳定化,然后发出带有可读更改流的change事件。 安装 $ npm install fsnotifier 用法 初始化文件的通知程序: var notifier = require ( 'fsnotifier' ) ; var n = notifier ( 'logfile.txt' ) ; // register a listener to the change event and pipe the changes to stdout n . on ( 'change' , function ( stream ) { stream . pipe ( process . stdout ) ; } ) ; // stop no


【文件预览】:
fsnotifier-master
----index.js(43B)
----package.json(519B)
----lib()
--------Notifier.js(2KB)
----README.md(633B)

网友评论