Examples of new signal inputs in Angular

Loading

Reading Time: 7 minutes Introduction In this blog post, I would like to show a new feature of Angular 17.1.0 that is called Signal input. New signal input is important in Angular because it can do things that previous version cannot. For example, signal input facilitates construction of computed signals. Signal input also allows API to use it as … Read more

A Deep Dive into Angular and Ngneat Query with Our Demo Store

Loading

Reading Time: 8 minutes Introduction In this blog post, I would like to deep dive into Angular and Tanstack query by calling a Store API to build a store demo. Tanstack query for Angular is a library for fetching, caching, sychronizing, and updating server data. ngneat/query is an Angular Tanstack query adaptor that supports Signals and Observable, fetching, caching, … Read more

Update page title with Title Strategy in Angular

Loading

Reading Time: 4 minutes Introduction In this blog post, I described how to update page title using custom title strategy class. Since Angular 14, a route has an optional title property that sets document title after navigation. In some use cases, a generic document title is suffice. In other use cases, pages display dynamic contents and the document title … Read more