In this tutorial, you’ll learn Angular 2 resource
for programmers who are construction or want to build web client applications
under HTML and Typescript (Typescript
is compiled into JavaScript).
We will discover
the Angular 2 architecture, directives, components,
services, routing, styling, events, validation, unit testing, and everything we
need in our daily work
import {Component} from 'angular2/core';
@Component({
// we will use this Tag to Call our Component
selector: 'angular-2-sample',
// The location of our Template used in this Component
templateUrl: 'app/hello_world.html'
})
export class HelloWorld {
// variable declaration yourName
yourName: string = '';
}
Is that tutorial
for you?
If you have already worked with:
·
HTML
·
CSS
·
Javascript
Then this Tutorial is for you
History
The first version of Angular delivered
in 2009. And today we speak about a new Angular called Angular 2. Angular 2 is a new Framework and not a new
Release of Angular 1.x. (this is the reality).
0 comments:
Post a Comment