angular
Deep dives into Angular architecture, real-world AI integration, state management patterns, and frontend engineering practices.
3 articles
ngrx-graph: Static Analysis and Graph Visualization for NgRx Applications

If you have ever traced an action through a sprawling NgRx codebase, wondering which effect listens to it, which reducer handles it, and whether some other effect silently dispatches another action in the chain, you know the pain. Manual code traversal works until it does not. One missed dispatch() call buried in a mergeMap. Your mental model breaks.
Read more →Making Angular AI Work in Real Projects

AI can generate a component, write a test, or explain a compiler error. But in real applications, results depend more on project context than model capability. It doesn't understand your architecture, your conventions, or the boundaries you built over years.
Read more →Angular - Content Projection
Content projection is a feature in angular that supports inserting a component in another component. This changes the way an angular developer designs his application/library by implementing flexible and reusable components.
Read more →