Giter Site home page Giter Site logo

codio / node-inotifywait Goto Github PK

View Code? Open in Web Editor NEW

This project forked from inist-cnrs/node-inotifywait

0.0 27.0 0.0 171 KB

Yet another nodejs fs.watch/inotify implementation. Good for large directory structure with lot of files.

License: MIT License

JavaScript 100.00%

node-inotifywait's Introduction

node-inotifywait

Yet another nodejs fs.watch implementation that can watch:

  • folders recursively
  • big number of directories and files
  • with low CPU use

This implementation is a wrapper above the inotifywait system command.

Why

Because other implementations:

Are not performant for huge number of directories and files watching. Some are not recursive, other have high CPU usage when watching lot of directories and files.

Installation

npm install inotifywait

Prerequisit is to have the inotifywait command in the current PATH. On debian/ubuntu, you have to sudo apt-get install inotify-tools

Events

  • add (p1 = filename, isDir): received when a file or directory is added

  • change (p1 = filename, isDir): received when a file is modified

  • unlink (p1 = filename, isDir): received when a file or directory is deleted

  • unknown (p1 = filename, p2 = full raw event object): received when unknown action is done on a file or directory

  • ready (p1 = unix process object): received when inotifywait is ready to watch files or directories

  • close (no parameter): received when inotifywait exited

  • error (p1 = error object): received when an error occures

Example

var INotifyWait = require('inotifywait');

var watch1 = new INotifyWait('/tmp/', { recursive: false });
watch1.on('ready', function (filename) {
  console.log('watcher is watching');
});
watch1.on('add', function (filename) {
  console.log(filename + ' added');
  watch1.close(); // stop watching
});

var watch2 = new INotifyWait('/var/log/', { recursive: true });
watch2.on('change', function (filename) {
  console.log(filename + ' changed');
  watch2.close(); // stop watching
});

Contributors

node-inotifywait's People

Contributors

dignifiedquire avatar kerphi avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.