Domain Driven Design - Architecture
Example for an Angular Application

Search for a command to run...
Example for an Angular Application

The Chrome-Browser has with its DevTools a useful tiny feature. 1. Open the DevTools on the page which contains the dom-element with the corresponding scrollbar.2. Klick the Elements menu-item within the DevTools-Toolbar.3. Look for the element wit...

This personal recommendation is intended to help design a scalable architecture.

Let's first define a few basic things. We'll use this URL as an example: /users/james/articles?from=134#section. It may be obvious but let's first point out that query parameters (?from=134) and fragments (#section) do not play any role in path matc...

We all know that you can install a node-package globally or locally (package.json). But what happens if I install for example the typescript-compiler locally and start the compiler directly in the terminal? Let's do it... Install typscript-compiler l...

A closer look to its track argument

I created a list to explain the most important terms when it comes to i18n of an application.

Providing the service within the scope of the lazy loaded module.

Let's assume you make a request in Angular via HttpClient to a BackendApi that answers you with the following JSON: [{ "firstname": "Peter", "lastname": "Parker", "job": "Superhero" }] You would then like to map this JSON to a suitable Typescript do...
