All Projects → angular-university → angular-advanced-course

angular-university / angular-advanced-course

Licence: MIT license
Angular Advanced Library Laboratory Course - Build Your Own Library

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to angular-advanced-course

Angular Interview Questions
A list of helpful Angular interview questions you can use to interview potential candidates, test yourself or completely ignore.
Stars: ✭ 967 (+1079.27%)
Mutual labels:  rxjs, angular-cli, angular-components
Angular Interview Questions
Most extensive Angular interview questions based on your level.
Stars: ✭ 354 (+331.71%)
Mutual labels:  angular-cli, angular-components
awesome-angular
💖 A list of awesome Angular (2️⃣➕) resources
Stars: ✭ 61 (-25.61%)
Mutual labels:  angular-cli, angular-components
Angular4-seed
Angular 4 Seed for Angular Forms
Stars: ✭ 37 (-54.88%)
Mutual labels:  angular-cli, angular-components
Ng Zorro Antd
Angular UI Component Library based on Ant Design
Stars: ✭ 7,841 (+9462.2%)
Mutual labels:  angular-components, angular-directives
Material
A lightweight Material Design library for Angular based on Google's Material Components for the Web.
Stars: ✭ 143 (+74.39%)
Mutual labels:  angular-components, angular-directives
Angularconcepts
Key Angular Concepts using Latest Angular version 5
Stars: ✭ 31 (-62.2%)
Mutual labels:  angular-cli, angular-components
Nebular
💥 Customizable Angular UI Library based on Eva Design System 🌚✨Dark Mode
Stars: ✭ 7,368 (+8885.37%)
Mutual labels:  angular-cli, angular-components
Angular Ru Interview Questions
Вопросы на собеседовании по Angular
Stars: ✭ 224 (+173.17%)
Mutual labels:  rxjs, angular-cli
ngx-model-hacker-news-example
Example repository with Hacker News implementation using Angular, Angular Material & ngx-model
Stars: ✭ 27 (-67.07%)
Mutual labels:  rxjs, angular-cli
Angular Prest
pREST component for Angular
Stars: ✭ 16 (-80.49%)
Mutual labels:  angular-components, angular-directives
Model
Angular Model - Simple state management with minimalist API, one way data flow, multiple model support and immutable data exposed as RxJS Observable.
Stars: ✭ 242 (+195.12%)
Mutual labels:  rxjs, angular-cli
Ng Zorro Antd Mobile
A configurable Mobile UI components based on Ant Design Mobile and Angular. 🐜
Stars: ✭ 709 (+764.63%)
Mutual labels:  angular-components, angular-directives
Ngx Quill Editor
🍡@quilljs editor component for @angular
Stars: ✭ 234 (+185.37%)
Mutual labels:  angular-components, angular-directives
Angular Playground
A drop in app module for working on Angular components in isolation (Angular version 2.x and above).
Stars: ✭ 414 (+404.88%)
Mutual labels:  angular-components, angular-directives
Nx Packaged
Angular libraries with ng-packagr embedded in Nx Workspace.
Stars: ✭ 82 (+0%)
Mutual labels:  angular-cli, angular-components
Blog Angular
Angular 笔记
Stars: ✭ 238 (+190.24%)
Mutual labels:  rxjs, angular-cli
notus-angular
Notus Angular: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 148 (+80.49%)
Mutual labels:  angular-cli, angular-components
ngx-log-monitor
NGX Log Monitor - Log Monitoring Component for Angular
Stars: ✭ 33 (-59.76%)
Mutual labels:  rxjs
nestjs-rest-sample
NestJS RESTful APIs Sample
Stars: ✭ 204 (+148.78%)
Mutual labels:  rxjs

Angular Advanced Library Laboratory Course

This repository contains the code of the Angular Advanced Library Laboratory Course: Build Your Own Library.

Angular Advanced Library Laboratory Course: Build Your Own Library

Installation pre-requisites

For running this project we need and npm installed on our machine. These are some tutorials to install node in different operating systems:

Its important to install the latest version of Node

Installing the Angular CLI

With the following command the angular-cli will be installed globally in your machine, as well as Yarn:

npm install -g @angular/cli yarn

How To install this repository

We can install the master branch using the following commands:

git clone https://github.com/angular-university/angular-advanced-course.git

This repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:

cd angular-advanced-course/au-input
yarn

Its also possible to install the modules as usual using npm:

npm install 

Yarn has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.

This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.

To Run the Development Server

We can start the chat application with the following command:

npm start

The application is visible at port 4200 - http://localhost:4200

Installing branches other than master

At certain points along the course, you will be asked to checkout other remote branches other than master. You can view all branches that you have available remotely using the following command:

git branch -a

The remote branches have their starting in origin, such as for example au-input.

We can checkout the remote branch and start tracking it with a local branch that has the same name, by using the following command:

  git checkout -b au-input origin/au-input

Other Courses

RxJs and Reactive Patterns Angular Architecture Course

If you are looking for the RxJs and Reactive Patterns Angular Architecture Course code, the repo with the full code can be found here:

RxJs and Reactive Patterns Angular Architecture Course

RxJs and Reactive Patterns Angular Architecture Course

Angular Ngrx Reactive Extensions Architecture Course

If you are looking for the Angular Ngrx Reactive Extensions Architecture Course code, the repo with the full code can be found here:

Angular Ngrx Reactive Extensions Architecture Course

Github repo for this course

Angular Ngrx Course

Angular 2 and Firebase - Build a Web Application Course

If you are looking for the Angular 2 and Firebase - Build a Web Application Course code, the repo with the full code can be found here:

Angular 2 and Firebase - Build a Web Application

Github repo for this course

Angular firebase course

Complete Typescript 2 Course - Build A REST API

If you are looking for the Complete Typescript 2 Course - Build a REST API, the repo with the full code can be found here:

https://angular-university.io/course/typescript-2-tutorial

Github repo for this course

Complete Typescript Course

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].