-
-
Save gaearon/a8519155ec102b317ff2ae97e2c14f78 to your computer and use it in GitHub Desktop.
Basic HMR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// change this file | |
module.exports = 42 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = require('a') | |
console.log('a is', a) | |
if (module.hot) { | |
module.hot.accept('./a', () => { | |
// Evaluate again | |
a = require('a') | |
console.log('now a is', a) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment