...

/

The Architecture of an Angular App

The Architecture of an Angular App

Let's explore the architecture of an Angular app and see what modules, components, and services are.

Angular is a framework and a platform that’s written using HTML and TypeScript. The functionality of the application is written in TypeScript files that can be imported throughout the app as libraries, adding functionality throughout the app.

When the Angular application app is run in the browser, these TypeScript files are converted into JavaScript files, which are then bundled up into the payload that ...