CoreUI Free Angular Admin Template v5.6.23 - Angular 21.2.12 Update
We are pleased to announce the release of CoreUI Free Angular Admin Template v5.6.23. This update aligns the template with Angular 21.2.12, refreshes the bundled CoreUI packages, and keeps Angular dashboard projects current with the latest maintenance improvements.
CoreUI PRO Angular Admin Template v5.6.23 - Angular 21.2.12 Update
We are pleased to announce the release of CoreUI PRO Angular Admin Template v5.6.23. This update aligns the template with Angular 21.2.12, refreshes the bundled CoreUI PRO packages, and keeps enterprise dashboard projects up to date with the latest maintenance improvements.
CoreUI PRO for Angular v5.6.23 - Angular 21.2.12 Update
We are pleased to announce the release of CoreUI PRO for Angular v5.6.23. This release aligns the library with Angular 21.2.12, refreshes the surrounding dependency stack, and keeps CoreUI PRO applications current with the latest maintenance updates.
CoreUI for Angular v5.6.22 - Angular 21.2.10 Security Update
We are pleased to announce the release of CoreUI for Angular v5.6.22. This security and maintenance update brings full support for Angular 21.2.10 and includes critical security patches addressing multiple vulnerabilities in hono, lodash, path-to-regexp, picomatch, brace-expansion, and follow-redirects. This update ensures your Angular applications run securely with the latest framework improvements and comprehensive dependency updates.
CoreUI Free Angular Admin Template v5.6.22 - Angular 21.2.10 Update
We are pleased to announce the release of CoreUI Free Angular Admin Template v5.6.22. This security and maintenance update brings full support for Angular 21.2.10, includes updated CoreUI for Angular v5.6.22 components, and addresses multiple security vulnerabilities. This release ensures your Angular admin dashboard runs securely with the latest framework improvements.
CoreUI PRO Angular Admin Template v5.6.22 - Angular 21.2.10 Update
We are pleased to announce the release of CoreUI PRO Angular Admin Template v5.6.22. This security and maintenance update brings full support for Angular 21.2.10, includes updated CoreUI PRO for Angular v5.6.22 components, and addresses multiple security vulnerabilities. This release ensures your enterprise Angular admin dashboard runs securely with the latest framework improvements and all exclusive PRO features.
CoreUI PRO for Angular v5.6.22 - Angular 21.2.10 Security Update
We are pleased to announce the release of CoreUI PRO for Angular v5.6.22. This security and maintenance update brings full support for Angular 21.2.10 and includes critical security patches addressing multiple vulnerabilities in hono, lodash, path-to-regexp, picomatch, brace-expansion, and follow-redirects. This update ensures your enterprise Angular applications run securely with the latest framework improvements and comprehensive dependency updates.
How to build a chat app in Angular
Building a chat app in Angular demonstrates real-time communication with WebSockets, infinite scroll for message history, and reactive state management for incoming messages. As the creator of CoreUI with Angular development experience since 2014, I’ve built the chat interface components in CoreUI Angular templates that handle message threading, timestamps, and auto-scroll to the latest message. The architecture uses a WebSocket service that manages the connection and exposes an observable of incoming messages, keeping the chat component clean and focused on rendering. Proper cleanup of WebSocket connections on component destroy prevents memory leaks in long-running applications.
How to build a notes app in Angular
A notes app combines CRUD operations, real-time search filtering, and rich text display in an intuitive interface that teaches essential Angular patterns.
As the creator of CoreUI with Angular development experience since 2014, I use this project structure in CoreUI Angular templates as the starting point for more complex content management features.
The architecture uses a reactive service with BehaviorSubject for state, the async pipe for memory-safe subscriptions, and combineLatest to derive the filtered list from both the notes array and the search query.
This reactive approach avoids imperative subscription management and keeps the component template simple.
How to build a todo app in Angular
Building a todo app in Angular is the ideal project for learning reactive state management, reactive forms, and component communication patterns in a realistic context.
As the creator of CoreUI with Angular development experience since 2014, I use this project structure as a reference for the correct separation of concerns between a service for state, a store service for data, and components for display.
The state lives in an injectable service using BehaviorSubject so any component in the tree can subscribe to todo changes reactively.
This pattern scales from a simple todo app to complex enterprise state management.