New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

watcher-require

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

watcher-require

Require a module and receive a callback each time the module or one of his dependencies has been modified

  • 0.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25
increased by66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Watcher Require

npm npm

With this module you will receive a callback when a module or its dependencies are modified.

To receive a callback for any non-native dependecies an specific module loads, see https://github.com/Llorx/custom-require

To always receive an updated version of your modules, checking files and dependencies modifications, see https://github.com/Llorx/updated-require

Installation

npm install watcher-require

If you want a lightweight installation, but less consistent as uses nodejs fs.watch() instead of chokidar library, install with:

npm install watcher-require --no-optional

Usage

/* FILE: test1.js */
// Load any non-native module
require("react");
/* FILE: test2.js */
// Load any non-native module
require("react");
require("redux");
/* FILE: main.js */
// Load the module at the top of the entry point file
var WatcherRequire = require("watcher-require").WatcherRequire;

// If you are using TypeScript, you can use import
import { WatcherRequire } from "watcher-require";

// Instantiate an object with a callback that will be called with all the new changes
var watcherRequire = new WatcherRequire(function(changes) {
    console.log("Something has changed! decache and reload!");
    console.log(changes.add, changes.changed, changes.unlink);
}, {
    delay: 300, // The callback will not be called instantly. You will receive one callback per each bunch of files changed
    persistent: true // Keep the process open, watching files
});

// Require a module to start watching
watcherRequire.require("./test");

// You can also require another file to watch
watcherRequire.require("./test2");

// You can create different Watcher Require instances together in the same script
var secondWatcher = new WatcherRequire(function() {
    console.log("Second watcher");
});

// Requiring modules already required by another instance will not be a problem
// Second watcher will receive all the dependencies too
// The require method will work as the default require one, returning the exports contents
var yay = secondWatcher.require("./test");

// Yay it
console.log(yay);

// After you have finished, call dispose() to clean resources attached to modules
watcherRequire.dispose();
secondWatcher.dispose();

Also, it works with asynchronous requires

/* FILE: async_test.js */
// Load any non-native module
require("react");
setTimeout(function() {
    require("redux");
}, 1000);

Limitations

See Custom Require limitations: https://github.com/Llorx/custom-require#limitations

Keywords

FAQs

Package last updated on 20 Dec 2016

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc