Skip to content

Latest commit

 

History

History
34 lines (16 loc) · 1.32 KB

README.md

File metadata and controls

34 lines (16 loc) · 1.32 KB

Last Commit License

Angular Notes

The Complete Angular Course: Beginner to Advanced
Created by Maximilian Schwarzmüller

Why use Angular over vanilla js

Many applications are built with vanilla js however as the applications get more complex, jquery gets hard to maintain.

With Va

Architecture of Angular Apps

Modern applications have two parts:

  • Front-end- What the user sees and interacts with. Includes UI > Angular. All about presentation Logic and displaying data/ respoding to user action.
  • Back-end- On the cloud. Does data processing and storage. DATA & APIs or Business Logic.

Front-end talks to the back-end to get/save data. Data isn't stored on the client [angular].

API: Endpoints that are accessible via the HTTP protocol. They can be called by simple HTTP requests to get/save data.

Next step is to set up the IDE to create angular projects.