AngularJS

AngularJS use to extends the HTML attributes or features. AngularJS main purpose it to develop the Single Page Applications also called SPAs. It is very easy to learn, you just before know about how to use the js and HTML.

We are going to introduce you to the AngualrJS and and will help you learn this as easy and fast as possible.



In this tutorial series you will learn the basics of the AngualrJS, controllers, expressions, directives, filters and modules.

After learning all these things you can learn everything that you want to learn about the AngularJS. Like the events, forms, DOM, inputs, validations and Http etc.

Here are some example codes for you to exercise and test himself you just copy and use but make sure to understand all the things. This is just for reference how the code looks.

<!DOCTYPE html>
<html lang="en-US">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="">
  <p>Name : <input type="text" ng-model="name"></p>
  <h1>Hello {{name}}</h1>
</div>


History about the AngularJS 

The first version of the AngularJS 1.0 wast released in the year of 2012.

Misko Hevery was the first google employee, stared work with the AngularJS in the year of 2009.

He succeed with hid this AngularJS idea and now the AngularJs have the Google Support to be use for developing the projects and apps.

To start AngularJS you should already know about the

As i mentioned before to start learning the AngularJS, You should know about the some of the web languages. These are client side, markup and style languages, thease are also very easy to learn and understand, but if you already know you can immediate start AngularJS

  • HTML
  • JavaScript
  • CSS

What should you learn to before start work in the AngularJS

Here we are listing most important chapters or course content if you are doing to start learn the AngularJS, and also these are the necessary things to leran or know to start work in the AngularJS. There all listed:-
  • Angular Intro
  • Angular Expressions
  • Angular Modules
  • Angular Directives
  • Angular Model
  • Angular Data Binding
  • Angular Controllers
  • Angular Scopes
  • Angular Filters
  • Angular Services
  • Angular Http
  • Angular Tables
  • Angular Select
  • Angular SQL
  • Angular DOM
  • Angular Events
  • Angular Forms
  • Angular Validation
  • Angular API
  • Angular W3.CSS
  • Angular Includes
  • Angular Animations
  • Angular Routing
  • Angular Application

First step to start AngularJS

The only one thing is required AngularJS library js file to attach in your document and then you can start writing your AngularJS codes or syntax. You need to add this CDN or the js file of the AngularJS library file under the head tag of your document. here is the code to attach your document:-


<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
</head>



Students Tech Life