/angular-crud-basics

An basics crud page in angular

Primary LanguageHTML

Angular Tutorial Project

Welcome to the Angular Tutorial Project! This project is designed to help you learn the basics of Angular, a popular front-end web application framework. By following this tutorial, you'll gain hands-on experience building a simple Angular application from scratch.

Table of Contents

Project Overview

This project provides a step-by-step tutorial for creating a basic Angular application. You'll learn how to set up an Angular project, create components, use services, manage routing, and handle user input. By the end of this tutorial, you will have built a simple yet functional web application.

Prerequisites

Before you begin, make sure you have the following installed on your system:

Installation

Follow these steps to set up the project:

  1. Clone the repository:

    git clone https://github.com/your-username/angular-tutorial.git
    cd angular-tutorial
  2. Install the dependencies:

    npm install
  3. Start the development server:

    ng serve
  4. Open your browser and navigate to http://localhost:4200. You should see the Angular welcome page.

Project Structure

Here's a brief overview of the project's structure:

angular-tutorial/
├── src/
│   ├── app/
│   │   ├── components/
│   │   │   ├── header/
│   │   │   │   ├── header.component.html
│   │   │   │   ├── header.component.ts
│   │   │   │   └── header.component.css
│   │   │   ├── footer/
│   │   │   │   ├── footer.component.html
│   │   │   │   ├── footer.component.ts
│   │   │   │   └── footer.component.css
│   │   ├── services/
│   │   │   ├── data.service.ts
│   │   ├── app-routing.module.ts
│   │   ├── app.component.html
│   │   ├── app.component.ts
│   │   ├── app.module.ts
│   ├── assets/
│   ├── environments/
│   ├── index.html
│   ├── main.ts
│   ├── styles.css
├── angular.json
├── package.json
├── README.md
└── tsconfig.json