Tuesday, 27 June 2017

Angularjs - Home

AngularJS Tutorial


AngularJS is a very powerful JavaScript Framework. It is used in Single Page Application (SPA) projects. It extends HTML DOM with additional attributes and makes it more responsive to user actions. AngularJS is open source, completely free, and used by thousands of developers around the world. It is licensed under the Apache license version 2.0.

Audience

This tutorial is designed for software professionals who want to learn the basics of AngularJS and its programming concepts in simple and easy steps. It describes the components of AngularJS with suitable examples.

Prerequisites

You should have a basic understanding of JavaScript and any text editor. As we are going to develop web-based applications using AngularJS, it will be good if you have an understanding of other web technologies such as HTML, CSS, AJAX, etc.

Try AngularJS Online

For most of the examples given in this tutorial you will find Try it option available, so just make use of it to see the output of your code and enjoy your learning.
Try following example using Try it option available at the top right corner of the below sample code box −

Hello !


<!doctype html>
<html ng-app>
   
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
   </head>
   
   <body>
      <div>
         <label>Name:</label>
         <input type = "text" ng-model = "yourName" placeholder = "Enter a name here">
         <hr />
         
         <h1>Hello !</h1>
      </div>
      
   </body>
</html>

Related Posts:

  • AngularJS - First Application AngularJS - First Application Before we start with creating actual HelloWorld application using AngularJS, let us see what are the actual parts o… Read More
  • AngularJS - MVC Architecture AngularJS - MVC Architecture Model View Controller or MVC as it is popularly called, is a software design pattern for developing web … Read More
  • AngularJS - Directives AngularJS - Directives AngularJS directives are used to extend HTML. These are special attributes starting with ng- prefix. We're going to discus… Read More
  • AngularJS - Overview What is AngularJS? AngularJS is an open source web application framework. It was originally developed in 2009 by Misko Hevery and Adam Abrons. It i… Read More
  • AngularJS - Environment Setup Try it Option Online You really do not need to set up your own environment to start learning AngularJS. Reason is very simple, we already have set… Read More

0 comments:

Post a Comment