Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zo-tail-f

zero0-1one7MIT1.0.4

watch file like tail -f

tail-f, tail, read line

readme

tail-f

watch file like tail -f

Installation

  npm install --save zo-tail-f

Usage

  const tail = require('zo-tail-f')  
  let watcher = tail.watch('test/test.log')
  watcher.on('line', line => {
    console.log(line)
  }) 

api

tail.watch(filename, options)

  • filename:
  • options:
    • encoding: default: 'utf8'
    • mode: 'line' 'chunk' 'stream', default:'line'
    • interval: ms, default: 0 no inspect. Sometimes fs.watch() is delayed too much, For more timely changes, you can set the 'interval' parameter