Search⌘ K
AI Features

Architecture and Component Overview

Explore the two-tier architecture of a recipe book application built with Angular and a RESTful Node.js backend. Understand the roles and hierarchy of core components such as AppComponent, Header, Home, RecipeFilter, RecipesList, and forms for creating and editing recipes.

An architecture overview

We’ll use a two-tier architecture for this application. The front-end layer of the recipe book app will be implemented in Angular 12 and communicate with a RESTful backend based on Node.js.

Note: The aspects related to the backend are not the subject of this course and will not be detailed.

The frontend of ...