New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

file-tail

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-tail

Like tail -F command in unix. Runs on Windows (no fs.watch). Contains command line version.

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

node-file-tail

A tiny, portable tail module for Node.js. Similar to tail -F in Unix. Extends node-file-size-watcher. Does not rely on fs.watch, thus works in Windows. Install globally to use the command line tool.

###Usage

	ft = fileTailer.startTailing('logfile.log');
	ft.on('line', function(line){
		// do stuff
	});

###Options

Start tailing with just a file descriptor string, or pass in an object with these properties:

startTailing({
	fd: aFileDescriptor,           // Required
	ms: aFileCheckingInterval,     // Defaults to 100 (milliseconds)
	mode: 'line',                  // The other option is 'stream'
	encoding: 'utf8'               // see Node's fs.createReadStream
	onErr: function(error){};      // immediately listen for 'error' event
});

###Events

  • 'error' -- All errors including ENOENTs are emitted through this.
  • 'tailError' -- 'Error' with ENOENTs ignored; use if you don't care if the file is missing.
  • 'line' -- emitted whenever tailed file grows by a line (or many), unless mode is 'stream'.
  • 'stream' -- If mode is 'stream', will emit a Node.js stream object instead of lines. Use this if you need to preserve every byte or want to handle the details yourself.

Lastly, file-tail objects are just types of file-size-watchers, so you can use everything they have as well. See (https://github.com/alexmiddeleer/node-file-size-watcher)

###Example

Try it out with with this little script (Use with Node script.js fileToTail):

var fd = process.argv[2],
ft = require('file-tail').startTailing(fd);

ft.on('line', function(line) {
	console.log(line);
});

###CLI Usage

To use this tool on the command line, just install it globally (npm install -g). Then run nftail <filename>.

###Help out

Bug reports, feedback, or code contributions are appreciated. All pull requests will be reviewed.

Keywords

tail

FAQs

Package last updated on 21 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts