hot-callback-loader

0.2.0 • Public • Published

hot-callback-loader

Webpack loader that wraps a module in a callback that executes whenever the module hot updates

Installation

npm install hot-callback-loader --save-dev

Usage

// import using es6 syntax
import hotMyModule from 'hot-callback!./path/to/my-module';
// OR use commonjs syntax
const hotMyModule = require('hot-callback!./path/to/my-module');
 
let MyModule;
hotMyModule(function(newMyModule) {
  // this callback will execute initially and every time the module updates
  myModule = newMyModule;
});
 
// the above callback is executed synchronously, so we can use MyModule now
MyModule.doStuff();

Getting the correct export

Often the object you want to load is exported as a default export of your module. To avoid having to manually type 'newMyModule.default' every time in the hot callback, you can set the loader to always pass a specific export.

// import using es6 syntax
import hotRoutes from 'hot-callback?export=default!./routes';
 
hotRoutes(server.updateRoutes.bind(server));

Package Sidebar

Install

npm i hot-callback-loader

Weekly Downloads

53

Version

0.2.0

License

MIT

Last publish

Collaborators

  • flut1