The Stages of an Angular Architecture (Angular Global Summit)
This is a presentation from Angular Global Summit where I am talking about the stages of an Angular architecture.
This is a presentation from Angular Global Summit where I am talking about the stages of an Angular architecture.
It goes without saying that having a CI pipeline for your Angular apps is a must. Setting one up for regular Angular apps is fairly straightforward but when you have an Nx monorepo there are certain other challenges that you have to overcome to successfully orchestrate a “build once, deploy many” pipeline. This post will …
How to Set up a CI pipeline with Azure Pipelines and Nx Read More »
Git hooks can be used to automate tasks in your development workflow. The earlier a bug is discovered, the cheaper it is to fix (and the less impact it has). Therefore it can be helpful to run tasks such as linting, formatting, and tests when you are e.g. committing and pushing your code, so any …
Long gone are the times when the frontend was just a dumb static website. Frontend apps have gotten increasingly complex since the rise of single-page application frameworks like Angular. It comes with the price of increased complexity and the ever-changing frontend landscape requires you to have an architecture that allows you to scale and adapt …
Testing is one of the most struggled topics in Angular development and many developers are either giving up testing altogether or applying inefficient testing practices consuming all their precious time while giving few results in return. This blog post will change all this as we will cover how I overcame these struggles the hard way …
I just did this live talk at AarhusJS – a Javascript meetup in Aarhus (Denmark), my hometown 🙂 The talk extended upon the lessons learned after working with Angular monorepo projects and will teach you about: Creating a good Angular architecture Case study: Monorepo architecture Using Sandboxes/facades Organizing libs and conventions in a monorepo Enforcing …
In this video we are going to cover: – How to feature toggle and when to use the different feature toggle implementations – Different questions regarding Git hooks and linting in a monorepo – An intro to Nx and how it is different from pure Angular CLI Live Q&A call from The Angular Architect Seminar …
Live Q&A call September 12, 2019 – The Angular Architect Seminar Read More »
This article will teach you how to create a scalable architecture for an Angular monorepo. The principles here can be applied to any front end monorepo, as they are based on universal best practices for getting a scalable and maintainable architecture. But first, what should a good Angular architecture do? Separate UI from business logic …
The Monorepo Blueprint – How to Create a Scalable Architecture for an Angular Monorepo Read More »