
Angular components overview
Jul 29, 2023 · Although the Angular CLI is the best way to create an Angular component, you can also create a component manually. This section describes how to create the core component …
Angular - Lesson 2: Create Home component
Oct 24, 2023 · This tutorial lesson demonstrates how to create a new component for your Angular app.
Angular - Create a new project
Aug 30, 2023 · Components are the fundamental building blocks of Angular applications. They display data on the screen, listen for user input, and take action based on that input.
Angular - ng generate
This is the archived documentation for Angular v17. Please visit angular.dev to see this page for the current version of Angular.
Getting started with standalone components - Angular
Standalone components provide a simplified way to build Angular applications. Standalone components, directives, and pipes aim to streamline the authoring experience by reducing the …
Angular - Create a feature component
Aug 30, 2023 · Keeping all features in one component as the application grows won't be maintainable. This tutorial splits up large components into smaller subcomponents, each …
Angular - Lazy-loading feature modules
Oct 24, 2023 · If you don't already have an application, follow the following steps to create one with the Angular CLI. If you already have an application, skip to Configure the routes.
Angular - Introduction to services and dependency injection
Sep 25, 2023 · When Angular creates a new instance of a component class, it determines which services or other dependencies that component needs by looking at the constructor parameter …
Angular - Dynamic component loader
Apr 18, 2023 · Component templates are not always fixed. An application might need to load new components at runtime. This cookbook shows you how to add components dynamically.
Angular - Common Routing Tasks
Oct 24, 2023 · To use the Angular router, an application needs to have at least two components so that it can navigate from one to the other. To create a component using the CLI, enter the …