The Three Building Blocks of Elite Angular Teams

Share on facebook
Share on google
Share on twitter
Share on linkedin

One of the core elements I screen for when I choose my clients is the culture. Without the right culture I know we will not be a good fit. In fact, nothing will work as they simply are not compatible with the processes and technology improvements I will try to teach them. It will be like trying to install a Windows app on a Mac…

 

The first element that needs to be in place before a tech team can perform on an elite level is culture. What is a good culture? A good culture is a culture which:

  • Makes the team members constantly improve
  • Is flexible for changes
  • Tries to understand each other before proposing their own opinion
  • Behaves like it is their own money which is at stake
  • Is taking full responsibility for everything instead of blaming others
  • Deep passion/love for what they are doing

 

Now, these qualities are easy to say but the human brain is very forgettable; the team will drift away from the intended culture if it is not constantly reiterated in the office. The culture is made of the majority of the people on the team’s beliefs. Only once the majority of the team actually believe in these values and is acting accordingly will this be the culture. Examples of bad cultures are conservatism, being over cautious, not being flexible to new ideas, not investing in training and learning and treating what they are doing as just another job.

 

Next comes processes, since better culture allows for better processes, but only if the previously mentioned cultural qualities are in place. Better processes could include:

All of these will give the biggest increase in development throughput when they are enabled. Also, good processes are not static quality. The best processes are the once that get constantly improved and innovated upon. Likewise, the right culture will make the team able to identify and get rid of legacy inefficient processes that add no value to software delivery.

Lastly, with the right culture and processes in place, it is time to play with the toys! The most important tooling I recommend to Angular teams regarding tools and technology is:

Again, without the right culture and processes, the tools will have minimal effect as the throughput is being throttled by the culture and processes.

Wrapping up

This post explained how culture is the basis of all meaningful improvement in a team. With the right culture in place, it is possible to build efficient processes up around them and ensure continuous improvements of the team. Lastly, having both of these in place the tools and technologies will then have a bigger impact on the teams throughput.

 

Do you want to become an Angular architect? Check out Angular Architect Accelerator.

Related Posts and Comments

How to Handle Errors in a Reactive Angular App

In this post, we will cover how to handle errors in a reactive Angular app. To provide a good user experience you should always let your users know what state your application is in. That includes showing a loading spinner when it’s loading and showing error messages if there are any errors. It is a

Read More »

How to Set Up Git Hooks in an Nx Repo

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

Read More »

The Stages of an Angular Architecture with Nx

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

Read More »

The Best Way to Use Signals in Angular Apps

Since Angular 16, Angular now has experimental support for signals and there is a lot of confusion in the community about whether this is going to replace RxJS or how it should be used in an app in combination with RxJS. This blog post sheds some light on what I think is the best way

Read More »

High ROI Testing with Cypress Component Testing

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

Read More »