From the course: Reactivity and Signals in Angular
Unlock this course with a free trial
Join today to access over 24,900 courses taught by industry experts.
Enforcing best practices - Angular Tutorial
From the course: Reactivity and Signals in Angular
Enforcing best practices
- [Instructor] The Angular roadmap has two main goals for the framework. Improved performance and improved developer experience. Signals are a huge part of implementing the roadmap. We have already seen how signals can improve performance by getting our application ready to run zoneless. You might be surprised to learn that our example application has been running zoneless for the entire course! Signals make it really easy to follow the best practices required to run our applications without the overhead of Zone.js. Whether we are writing new code or refactoring existing code, we want to make sure our teams are following Angular best practices. In addition to our human developers, many teams depend on AI coding assistance and AI-powered code editors like Copilot, Cursor, and Windsurf. Setting up guardrails for quality in our applications can help yield high quality performant code. To encourage AI assistance to follow Angular best practices, we can add additional instructions to our…