From b4f9a05737d58f0f75d832e7c3f7864124846a35 Mon Sep 17 00:00:00 2001 From: Arpan Nanavati Date: Fri, 28 Oct 2016 04:49:31 -0700 Subject: [PATCH] add a note about hot module reloading in gulp hot README this question about electrode supporting HMR has come up in multiple places https://github.com/electrode-io/electrode-archetype-react-app/issues/33 https://github.com/electrode-io/electrode-boilerplate-universal-react-node/issues/37 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 342c030..1767461 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ $ gulp dev #### What is `hot mode`? -`Hot mode` is where webpack transpiles your javascript and css code and continues to watch for any changes, and, builds and loads only the code that has changed on disk. It allows you to develop without re-loading your browser page as the changes will be automagically piped in. +`Hot mode` enables Hot module reloading(HMR), it is where webpack transpiles your javascript and css code and continues to watch for any changes, and, builds and loads only the code that has changed on disk. It allows you to develop without re-loading your browser page as the changes will be automagically piped in. #### How do I run my application tests?