Angular

Code Style Matters: Styling Angular apps using Prettier and TSLint (2020)

Some people think that well-styled code is a waste of effort and as long as the code works you shouldn’t bother. It’s often the same kind of people how says that writing automatic tests are a waste of time because it is faster to only test manually right now but doesn’t take the future maintenance …

Code Style Matters: Styling Angular apps using Prettier and TSLint (2020) Read More »

The Complete Guide to Angular Testing and a Weird Trick for Faster Unit Tests (2020)

When doing practices like continuous delivery and continuous integration, testing becomes a more important part of the work because it’s unreasonable to regression test all possible effects of a release manually. When doing five releases on a workday, you don’t get to do a full manual regression testing on every release as that would easily …

The Complete Guide to Angular Testing and a Weird Trick for Faster Unit Tests (2020) Read More »

Learning observables by cutting the fat away: The 10 most used observables operators

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 use of reactive programming, like in Redux. This enables easier management of the state, caching and treating async and sync logic in the same manner. …

Learning observables by cutting the fat away: The 10 most used observables operators Read More »