angular-hmr
angular-hmr copied to clipboard
Why do I need this as developer? This question and the terminology - 'hot module replacement' should be explained better.
New developers and developers who might not need this feature in present, maybe due to less compilation time required in their normal development procedure, might not understand the idea of hot module replacement. Please explain this idea first and then tell us how to do it.
The main advantage is in development time, Instead of having to reload the page it will automatically appear. Now this is not the most amazing thing. Keeping state is what really speeds up your development process. In a simple app this might seems like overhead, but if you are working on a multipage application and you are working on something 5 components deep it can be a pain to code -> safe -> recreate all the steps -> repeat
I hope this answers your question
Please add something like this to the main page!
You will get a lot more people using your project if you explain it better. Also it would be very important to list the advantages and disadvantages. Keeping state sounds great but I think it is a very complicated thing and it would be good to know what does work or doesn't before I start.
Angular's ng serve
does the same, right? Is there any difference?