🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

recursive-watch

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

recursive-watch

Minimal recursive file watcher

latest
Source
npmnpm
Version
1.1.4
Version published
Weekly downloads
49K
-14.71%
Maintainers
1
Weekly downloads
 
Created
Source

recursive-watch

Minimal recursive file watcher.

Uses the native recursive fs.watch option on macOS/Windows and basic recursive dir watching on Linux

npm install recursive-watch

Usage

var watch = require('recursive-watch')

watch('./a-file-or-directory', function (filename) {
  console.log('something changed with', filename)
})

API

var unwatch = watch(path, onchange)

Watch a directory or filename. Calls the onchange function if the path changed in anyway. Call the unwatch function to stop watching the path.

License

MIT

FAQs

Package last updated on 28 Mar 2018

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