Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sortedcord/angular-notes
Repo containing Angular.js course details, notes and summaries. Instructed by Mosh Hamedani on udemy.
https://github.com/sortedcord/angular-notes
angular guide javascript notes vanilla-js
Last synced: 7 days ago
JSON representation
Repo containing Angular.js course details, notes and summaries. Instructed by Mosh Hamedani on udemy.
- Host: GitHub
- URL: https://github.com/sortedcord/angular-notes
- Owner: sortedcord
- Created: 2021-05-04T14:11:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-05T16:23:02.000Z (over 3 years ago)
- Last Synced: 2024-11-16T23:11:52.320Z (2 months ago)
- Topics: angular, guide, javascript, notes, vanilla-js
- Language: TypeScript
- Homepage:
- Size: 645 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Last Commit](https://img.shields.io/github/last-commit/sortedcord/angular-notes?style=for-the-badge)
![License](https://img.shields.io/github/license/sortedcord/angular-notes?style=for-the-badge)# Angular Notes
#### The Complete Angular Course: Beginner to Advanced
Created by [Maximilian Schwarzmüller](https://www.udemy.com/user/mosh-hamedani/)## 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](/Setting%20up%20IDE.md) to create angular projects.