Development How to Pass Data Between Angular Parent and Child Components Let's learn how to pass data between parent and children components using the @Input() and @Output Angular directives.
React / Redux Angular vs. React: Learning React as an Angular Developer Angular vs. React? Here are some helpful tips to learn React when you’ve primarily been working with Angular.
Angular How to Unit Test Angular’s Standalone Components Angular 14 added a long-awaited feature: standalone components. However, to unit test these components, we need to make some changes.
Angular Here Are the Best New Features in Angular 16 I've used Angular on many development projects. Now, Angular 16 is here! Check out some of these great new features.
Angular Stop Using console.log in Your Angular Applications and Do This Instead Developers sometimes try `console.log` to debug their Angular applications. Let's use breakpoints and debug mode in JetBrains Webstorm.
Angular Automatically Unsubscribe from RXJS Observables in Angular Components If you prefer to be diligent, I'll introduce you to a way to make unsubscribing from observables in your components clean and quick.
Angular Unit Testing Routing Events in Angular Here's a clean and easy way to test routing events using tools already provided by the Angular library, with no third-party libraries needed.
Angular Use Angular CDK Overlay to Build a Custom, Accessible Select Dropdown Component, Part 3 This is the third in a series on using Angular CDK Overlay to build a custom, accessible select dropdown menu. Today: add keyboard input.
Angular Use Angular CDK Overlay to Build a Custom, Accessible Select Dropdown Component, Part 2 This is the second in a series on using Angular CDK Overlay to build a select dropdown menu. Here, we'll implement the next steps.
Angular Use Angular CDK Overlay to Build a Custom, Accessible Select Dropdown Component, Part 1 Angular CDK Overlay is the opposite of using the rigid HTML select element. The CDK Overlay is completely open-ended and customizable.
Angular How to Build Web Components in Angular Learn how to build web components in Angular, then export a web component from an Angular project for use in a non-Angular project.
Angular Using Jest for Testing in an Angular Project In this post, we will go over how to quickly replace Karma and Jasmine, the default test runner and assertion framework in a new Angular project, with Jest.