Skip to content
This repository has been archived by the owner on Nov 28, 2018. It is now read-only.

zetapush/hot-module-replacement

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hot-module-replacement

Hot module replacement for node.js

This module tries to mimic webpack HMR API

Installation

  npm install --save-dev hot-module-replacement

Usage

Put this code somewhere in your code to initialise hot reload

require('hot-module-replacement')({
  // options are optional
  ignore: /node_modues/  // regexp to decide if module should be ignored; also can be a function accepting string and returning true/false
})

You need to explicitly mark any subtree as 'hot reloable' by calling hot.accept()

  let foo = require('./util/foo.js');

  if (module.hot) { 
    module.hot.accept('./util/foo', () => {
      // if foo.js or any files that foo.js depend on are modified this callback is invoked
      foo = require('./util/foo.js'); // by this time module cache entry for 'foo' already cleaned and module reloaded, requiring again is the easiest way of geting reference to new module. We need to assign it to local foo variable to make our local code in this file aware of it.
    })
  }

Similar projects:

webpack hmr on the server

About

Hot module replacement for node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%