Getting Started With AngularJS

In this demo application our main concern will be on AngularJS, creating first Angular module, Directives, Expressions.

What is AngularJS?

It is a client-side JavaScript Framework for adding interactivity to HTML.

If you’re using JavaScript to create a dynamic website,

Angular is a good choice.

  • Angular helps you organize your JavaScript .
  • Angular helps create responsive (as in fast) websites.
  • Angular plays well with jQuery
  • Angular is easy to test

Directives

A Directive is a marker on an HTML tag that tells Angular to run or reference some JavaScript code.

Modules

  • Where we write pieces of our Angular application.
  • Makes our code more maintainable, testable, and readable.
  • Where we define dependencies for our app.

 

  1. var app = angular.module('company', []);  
In above line angular is ref of AngularJS.

"company" is application name.

[] show dependencies of application.

Controllers

Controllers are where we define our apps behavior by defining functions and values.
  1. app.controller('EmployeeController', function()  
  2. {  
  3.     this.employee = gem  
  4. });  
  5.   
  6. var gem =   
  7. {  
  8.     name: "Rohit Mane",  
  9.     salary: 20000.95,  
  10.     address: "Pune"  
  11. }  
In above case "EmployeeController" is controller name.

employee is one object; we assign some values to that object.

Access that value in index.html using ng-app and ng-controller:
  1. <div ng-app="company">  
  2.     <p>  
  3.         {{"hello" + " you"}}  
  4.     </p>  
  5.     <div ng-controller="EmployeeController as emp">  
  6.         <h1>  
  7. {{emp.employee.name}}  
  8. </h1>  
  9.         <h2>  
  10. ${{emp.employee.salary}}  
  11. </h2>  
  12.         <p>  
  13.             {{emp.employee.address}}  
  14.         </p>  
  15.     </div>  
  16. </div>  
Step-wise procedure to create first AngularJS application: Using Visual Studio

Step 1 : I am using VS 2015 to create application.

VS2015

Step 2 : Click on File, New Project, then ASP.NET Web Application,

Web Application

Step 3 : Select MVC Template and click OK.

MVC

Step 4 : After creating project it is showing this hierarchy.

hierarchy

Step 5 : Open Index.html in Home folder. Comment that code excluding the first three lines.

Index.html

Step 6 : Add angular.min.js and app.js files in Scripts folder,

files

Step 7 : Add references of that files in Layout.html file in View>Shared path.
  1. <script type="text/javascript" src="~/Scripts/angular.min.js">  
  2. </script>  
  3. <script type="text/javascript" src="~/Scripts/app.js"></script>  
  4. <link rel="stylesheet" type="text/css" href="bootstrap.min.css" /> 
Step 8 : Add the following code in app.js file.
  1. var app = angular.module('company', []);  
  2. app.controller('EmployeeController', function()   
  3.  {  
  4.     this.employee = gem  
  5. });  
  6.   
  7. var gem =  
  8. {  
  9.     name: "Rohit Mane",  
  10.     salary: 20000.95,  
  11.     address: "Pune"  
Step 9: Add the following code in Index.html file.
  1. <div ng-app="company">  
  2.     <p>  
  3.         {{"hello" + " you"}}  
  4.     </p>  
  5.     <div ng-controller="EmployeeController as emp">  
  6.         <h1>  
  7. {{emp.employee.name}}  
  8. </h1>  
  9.         <h2>  
  10. ${{emp.employee.salary}}  
  11. </h2>  
  12.         <p>  
  13.             {{emp.employee.address}}  
  14.         </p>  
  15.     </div>  
  16. </div> 
Now we have implemented and successfully completed all the steps.

To test the process you can build and run an application.

Execute it using Ctrl + Shift + W or right click on application and click view in browser. I hope it works fine.

Output :

Output

That it your application is ready.

Thanks for reading this article. If you have any queries and suggestions please feel free to ask me and also your valuable comments are important for me which motivates me for writing articles.
Read more articles on AngularJS