Avatar21 Post

Kelly Sanders

Hands write program code, in the foreground are virtual windows with codes
Exploring Angular 14 Standalone Components

Angular 14 introduces the standalone component—a component not part of any ngModule that can be used with either other standalone or module-based components. This new feature provides a simplified way to create an Angular application without having to make custom Angular modules. In this article, we will explore what standalone components are, how to create […]

Man with computer among servers
Enhancing Web Server Security with Request Filtering

The request filtering module is a crucial component in the security infrastructure of web servers. It acts as a gatekeeper, filtering out requests that may pose a threat to the server or its resources. One of its functions is to deny certain file extensions from being accessed or executed by users. This feature is designed […]

Angular logo on black background
Angular Basics: Retrieving Form Values

Forms are an essential part of any web application, and Angular provides us with powerful tools to create forms with validation without the need for any additional libraries. In this article, we will explore how to create forms in Angular using both reactive forms and template-driven forms, and how to retrieve form values from each […]