Angular

From Wiki RB4

Concept

Angular is a platform and framework for building single-page client applications using HTML and TypeScript. Angular is written in TypeScript. It implements core and optional functionality as a set of TypeScript libraries that you import into your apps. The basic building blocks are NgModules, which provide a compilation context for components. NgModules collect related code into functional sets; an Angular app is defined by a set of NgModules. An app always has at least a root module that enables bootstrapping, and typically has many more feature modules.

Style Guide

Installation

npm install -g @angular/cli
cd C:\Uwes
mkdir angular
ng new my-app1
cd my-app1
ng serve --open
http://localhost:4200/

Resources