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

deepnotify

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

deepnotify

Takes a root dir and recursively streams present and future files

latest
Source
npmnpm
Version
0.4.1
Version published
Maintainers
1
Created
Source

deepnotify

Takes a root dir and recursively streams present and future files using inotify(7).

build status dependency status dev dependency status

Example

var deepnotify = require('deepnotify');

var d = deepnotify('.');
d.pipe(process.stdout);

setTimeout(function() {
  d.close();
}, 5*1000);

Mehods

var deepnotify = require('deepnotify');

var d = deepnotify(root)

Return a redable stream of all present and future files recursively beneath a root directory.

d.close()

Close all inotify(7) watches on root and all its subdirectories.

Compatibility

deepnotify requires Node.js version 0.10.0 or higher and a Linux system with a kernel version of 2.6.13 or higher.

License

MIT

Keywords

recursive

FAQs

Package last updated on 12 Sep 2013

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