Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.