npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

watchfd

v0.0.14

Published

watch events open,change,unlink on all files that are refrenced or become refrenced by path. pause/resumeable

Downloads

56

Readme

Build Status

watchfd

Watch events open,change,unlink on all files that are refrenced or become refrenced by path

provide events for any file descriptors that are referenced by a watched path, or were referenced by a watched path for as long as they are still changing. active is defined by a timeout since last event. file descriptors that become inactive are removed.

install

npm install watchfd

use

var watchfd = require('watchfd').watch;
watchfd('/some.log',function(cur,prev){
	console.log(prev.size,' changed to ',cur.size);
});

a use case

an issue with log/file forwarding utilities currently available in npm is that they only watch the file descriptor under the filename. when a log is rotated and a new log is created the server may not stop writing to the old file descriptor immediately. Any data written to that descriptor in this state ends up in /dev/null

argument structure

watchfd.watch(filename, [options], listener)

  • filename its really intended that this be a regular file or non existant. i dont know what would happen right now if its a directory.

  • options. supported custom options are

    {
    "timeout": 60*60*1000, //defaults to one hour
    //how long an inactive file descriptor can remain inactive
    
    "timeoutInterval":60*5*1000 //every five minutes
    // how often to check for inactive file descriptors
    }
    
    //the options object is also passed directly to watch and watchFile so you may configure
    
    {
    "persistent":true, //defaults to true
    //persistent indicates whether the process should continue to run as long as files are being watched
    
    "interval":0, //defaults 0
    //interval indicates how often the target should be polled, in milliseconds. (On Linux systems with inotify, interval is ignored.) 
    }
  • callback this is bound to the change event of the watcher. its required

    callback(cur,prev)

    cur and prev are instances of fs.Stats

  • @returns an instance of Watcher

Watcher methods

Watcher.pause()

  • paused, changed and last state is kept for each file descriptor
    • stops file descriptors from timing out.
    • all events except error are paused.
    • unlink, open, change etc will be fired in the correct order after resume. no events will be missed but change events will be combined

Watcher.resume()

  • resumed
    • for each file descriptor pending events are fired in the corect order open,change,unlink
    • the change event has the stat from first change event while paused and the most recent so no change is missed.

Watcher.paused

  • is paused
  • readonly please.

Watcher events

Watcher.on(event name,call back);

  • change fs.Stats cur, fs.Stats prev
  • open fs.Stats cur,{fd:file descriptor,stat:fs.Stats cur}
  • unlink fs.Stats cur,{fd:file descriptor,stat:fs.Stats cur}
  • timeout fs.Stats cur,{fd:file descriptor,stat:fs.Stats cur}

windows support problems

  • It uses file inode as a unique id for each descriptor. I know there is a way to get a unique id for a file in windows i just don't know if that would be passed to stat as stat.ino.
  • I use watchFile which is not supported at all on windows but this would be easier to overcome considering i can use a configured polling interval as a stat polling fall back on windows.
  • I also don't know windows very well and don't know if windows has the problem this module solves...but i imagine it would

notes

I noticed distinct differences in watchFile vs watch api fs.watchFile will issue events for a file that is currently referenced by a path fs.watch will take a path but issue events whenever that file descriptor is changed even after it's unlinked

We should probably design servers to listen to SIGHUP and grab new file descriptors for all loggers but even if you used logrotate with copytruncate mode as to not change the file referenced by a path the chance that you will loose data is still there. I feel safer waiting for a file descriptor to be quiet so i know its out of use before i close it in a process that has the ability to read data out of it.