Skip to content

Instantly share code, notes, and snippets.

@gaearon
Created May 20, 2016 20:15
Show Gist options
  • Save gaearon/a8519155ec102b317ff2ae97e2c14f78 to your computer and use it in GitHub Desktop.
Save gaearon/a8519155ec102b317ff2ae97e2c14f78 to your computer and use it in GitHub Desktop.
Basic HMR
// change this file
module.exports = 42
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