uerbzr / angular-vehicle-voting-workshop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Angular Vehicle Voting Workshop

-don't use modules when creating a project

Brief History

-Used to be called AngularJS (Javascript!) so if you Google and come across this.. then it is a different animal!

  • Make by Google

Architecture

Modules/Componenets/Directives/Router/Pipes/Services

Modules group code together for building features Components - Build reusable components which render. Immutable state! Directive - interacting with the DOM by an ngIf Services - Getting data from API etc Pipes - transform

Extensions

What extensions for VS Code?

Setup

https://angular.io/guide/setup-local

Angular Basic Commands

Create Application:

ng new first-app

Start server and open browser:

ng serve --open

Create a component:

ng generate component component-name

Or

ng g c nameofcomponent

About


Languages

Language:TypeScript 81.2%Language:HTML 17.0%Language:CSS 1.8%