ng-conf 2018 Review

I attended ng-conf 2018 from April 18 – April 20. Below are some of my thoughts. I will (mostly) stick to the meat of the conference, the content, but will stray into a few off topic areas. In an effort to be transparent, I think the conference was great and my goal here is to persuade you to attend next …

Angular Child Routes Explained

Angular 2+ has a neat way to deal with child routes but those coming from AngularJS may find them a bit confusing. In this post, I will show how to use them with <router-outlet></router-outlet>for a seamless experience. First, lets take a look at an abbreviated version of the app-routing.ts file. const appRoutes: Routes = [ { path: ‘product/:id’, component: ProductComponent, children: …