Socket
Socket
Sign inDemoInstall

recursive-watch

Package Overview
Dependencies
1
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    recursive-watch

Minimal recursive file watcher


Version published
Weekly downloads
26K
decreased by-25.11%
Maintainers
1
Install size
11.3 kB
Created
Weekly downloads
 

Readme

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

Last updated on 28 Mar 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc