PinnedApplication State Management with Angular SignalsIn this article, I will demonstrate how to manage your application’s state using only Angular Signals and a small function. More than “Service with a Subject” Let’s begin with an explanation of why using a bunch of BehaviorSubject objects inside a se...Jul 25, 2023·9 min read
Angular Signals & Observables: DifferencesAngular 16 brought a new (for Angular) reactivity primitive, and Angular Signals will be, unavoidably, compared to Observables. I’ll highlight their differences. Signals always have a value Observables can emit their values synchronously or asynchron...Jul 15, 2023·5 min read
Collections State Management Service for AngularIn this article, I’ll show you how to use the ngx-collection library and why you might want to do this.Jul 9, 2023·7 min read
Why I Like the “Built-In Control Flow” Idea in AngularWhy improvements in this area will be extremely beneficial for every developer.Jun 15, 2023·4 min read
Angular Signals — TimingAngular v16 has been released, and my article is about the most important feature that this release brings: Angular Signals. I’ll show you, how and when computed() and effect() run the functions you send to them. Angular Signals While there are no of...May 6, 2023·6 min read
Mastering Angular: Essential Code Organization PrinciplesThis article will help you to avoid mistakes that are difficult (or just tiresome) to fix later. If you are going to create a new project and want to make it amazing — keep reading! Pure Functions This is the most important thing: keep your functions...Mar 22, 2023·9 min read