Skip to content

Instantly share code, notes, and snippets.

View coderkan's full-sized avatar
🏠
Working from home

Erkan Güzeler coderkan

🏠
Working from home
View GitHub Profile
export const environment = {
production: false,
hmr: true
};
export const environment = {
production: true,
hmr: false
};
export const environment = {
production: false,
hmr: false
};
"build": {
"configurations": {
...
"hmr": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
}
]
@coderkan
coderkan / hmr-dependency.md
Created March 8, 2020 21:09
HMR Blog resources
$ npm install --save-dev @angularclass/hmr
{
...
"compilerOptions": {
...
"types": ["node"]
},
}
"scripts": {
...
"hmr": "ng serve --configuration hmr"
}
import { NgModuleRef, ApplicationRef } from '@angular/core';
import { createNewHosts } from '@angularclass/hmr';
export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => {
let ngModule: NgModuleRef<any>;
module.hot.accept();
bootstrap().then(mod => ngModule = mod);
module.hot.dispose(() => {
const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
const elements = appRef.components.map(c => c.location.nativeElement);
const makeVisible = createNewHosts(elements);
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { hmrBootstrap } from './hmr';
if (environment.production) {
enableProdMode();
}
const bootstrap = () => platformBrowserDynamic().bootstrapModule(AppModule);
if (environment.hmr) {
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({ selector: '[framework-host]' })
export class FrameworkDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}