angular2-hot-loader
angular2-hot-loader copied to clipboard
[NOT MAINTAINED] Angular 2 hot loader
Hi, How can I integrate `angular2-hot-loader` with `Ionic 2`?
Is this project alive?
please update the compatibility as its still pointing to old 0.9 on npm thanks
Hi, i would like to implement the hotloader since it will make development faster, but i don't know where to implement > import \* as ng2HotLoader from 'angular2-hot-loader'; > >...
Hey, cool project you've got here. I did something similar for general JSPM/SystemJS projects here: https://github.com/capaj/systemjs-hot-reloader what do you use to notify the frontend about changes? I created a new...
I suppose that this could be implemented using the following `clone` function in the `updatePrototype` method. This was taken from [here](https://stackoverflow.com/questions/728360/most-elegant-way-to-clone-a-javascript-object). ``` javascript function clone(obj) { var copy; // Handle...
Right now the hot loading works by (re)loading the app's root component using the `DynamicComponentLoader`, i.e. reinitializing the whole application every time a component/template/style is updated. This could become a...
At this point we use the `DynamicComponentLoader` and render the entire root component in order to refresh the user interface. This issue has the following implications: - [ ] Performance...
When adding the `encapsulation` property to the `ComponentMetadata` (for example with `ViewEncapsulation.None` the styles are reloaded correctly. However when changing the mode after that the styles don't change. ~~I think...