This project is a simple storefront built with Angular, showcasing various Angular concepts including standalone apps, modules, services, components, and routing. In this tutorial, users will learn how to perform basic CRUD (Create, Read, Update, Delete) operations on products.
- Standalone App: The project is structured as a standalone Angular application.
- Modules: Utilizes Angular modules for better organization and separation of concerns.
- Services: Demonstrates the use of Angular services for data management and business logic.
- Components: Various components for different parts of the storefront, like product listing, editing, and addition.
- Routing: Implements Angular routing to navigate between different sections of the application.
- CRUD Operations: Users can perform Create, Read, Update, and Delete operations on products.
Before you begin, ensure you have the following installed:
-
Clone the repository:
git clone https://github.com/thecodedeck/angular-cc-1-client.git
-
Install dependencies:
npm install
- Run the development server:
ng serve
- Open your browser and navigate to http://localhost:4200/ to see the app in action.
This project is licensed under the MIT License.