Package Exports
- angular-hot-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (angular-hot-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Angular Hot Loader
Webpack loader for Hot Module Replacement in Angular 1.x applications.
Now works only with UI Router with a specific app structure shown below.
Forked from Angular-HMR
Webpack setup
- Install loader:
npm install --save-dev angular-hot-loader
- Add loader to webpack configuration:
loaders: [
{
test: /\.js$/,
loader: 'angular-hot!...other loaders'
}
]
Options
rootElement {String}
Default: [ng-app]
Specifies application DOM root element selector.
log {Boolean}
Default: false
Enables module output to console.
es2015class {Boolean}
Default: false
If you use babel to transpile es2015 code into es5, set this option to true.
Because babel restrict to use es2015 class only with new
keyword and thrown error if you try to call constructor with out new
.
How it works
This will inject the new controller / template then reload the state in UI Router
Your app structure should be something like:
import MyFactory from './your-factory';
import MyCtrl from './your-controller';
angular
.module('my-app', [ui.router])
.directive('MyDirective', reqire('MyDirective'))
.factory('MyFactory', MyFactory)
.controller('MyCtrl', MyCtrl);
and you save that the browser should refresh