hot-callback-loader
v0.2.0
Published
Webpack loader that wraps a module in a callback that executes whenever the module hot updates
Downloads
198
Maintainers
Readme
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));