Learning observables are way harder than learning to use promises with all the different operators and methods. But learning Observables is actually a very good investment because of the increasing … [Read more...] about Learning observables by cutting the fat away: The 10 most used observables operators
Angular
Angular custom validators + trick for flexible custom validator
One of the biggest strengths of Angular is its' forms library for handling forms logic. Even though Angular has some built-in form validators as required, it sometimes is necessary to create your own … [Read more...] about Angular custom validators + trick for flexible custom validator
Is Redux dead? 3 ways to use redux in your Angular app
Using Redux in React apps has become the industry standard for building scalable React apps, but with Angular, it is not so obvious when to use Redux because Angular already provides services, which … [Read more...] about Is Redux dead? 3 ways to use redux in your Angular app
Implementing Continuous Delivery through Five Steps
These days everywhere I go people seem to talk about wanting to deploy to production more often. It seemed like an endless battle trying to deploy more often as the amount of code to deploy seemed to … [Read more...] about Implementing Continuous Delivery through Five Steps
OpenID Connect with Angular 8 (OIDC Part 7)
Now we are getting somewhere, huh!? So far we have played around with the authorization code, hybrid and client credentials flow to get a grasp of when to use what. We have made the authorization … [Read more...] about OpenID Connect with Angular 8 (OIDC Part 7)
Creating a MEAN stack Application with Docker
This post is about creating a MEAN stack app consisting of Angular 5, MongoDB, NodeJS and Express, running in Docker. It is based on a Github demo I created, which can be found here. Docker … [Read more...] about Creating a MEAN stack Application with Docker
Dynamic Form Rendering with Angular Reactive Forms
A common need in enterprise application development is to support dynamically rendering of a form based on some domain-specific metadata. This enables central control of domain logic and enables … [Read more...] about Dynamic Form Rendering with Angular Reactive Forms
Getting Angular Application Ready for Production
This is an overview of how to prepare an Angular app for production. There will be future posts going more in-depth with the various steps described here. Note: Angular CLI is, fortunately, doing a … [Read more...] about Getting Angular Application Ready for Production