Interchangeable Components @ AngularConnect

Video, Slides & links of my talk about A/B Testing, Canary Release & White Labeling with Interchangeable Components. This will also show you how to lazy load components and services 😉. https://github.com/wishtack/wishtack-steroids/tree/master/packages/reactive-component-loader https://github.com/wishtack/wishtack-conference-finder  

Unleash the Power of Webpack in Angular

As all Angular developers should already know, Angular CLI is using Webpack under the hood. Fortunately, it’s not too deep and we can reach it without opening the hood (i.e. : ng eject or forking Angular CLI or using a boilerplate). TL;DR: Use Webpack’s require() instead of assets. Why would we do that? Loading assets & cache busting … More Unleash the Power of Webpack in Angular

Handle RxJS Subscriptions Properly Using Rx-Scavenger

One of the must tricky parts in Angular (or simply when using RxJS in general) is to handle Observables’ Subscriptions; but don’t panic! There are many ways to handle this properly and we’ll show you around the most common approaches. TL;DR : Use Rx-Scavenger! https://github.com/wishtack/wishtack-steroids/tree/master/packages/rx-scavenger Common Solutions Angular’s async Pipe Using Angular’s async Pipe, it is … More Handle RxJS Subscriptions Properly Using Rx-Scavenger