What is AngularJS?
AngularJS is a JavaScript framework that helps build web applications.
AngularJS is an excellent framework for building both Single Page Applications (SPA)
Google is the company that developed AngularJS.
What are the benefits of using AngularJS
1. Two Way Data-Binding : The Two Way Data-Binding, keeps the model and the view in sync all the times, that is if you change in the model, view gets updated and if you change in the view, model gets updated.
2. Dependency Injection :
3. Testing : It is very easy to test any of it's components through both unit testing and end to end testing with Angular.
4. Model View Controller : With angular it is very easy to develop applications in a clean MVC way. You should split your application code into MVC components. The rest is managed with components and connecting them together is done by angular.
5. Other Benifits : Controlling the behaviour of DOM elements using directives and the flexibility that angular filters provide.
What to do to build angular applications?
All you need is one script file angular.js.
To get the script file:
1. You can download the angular script file from https://angularjs.org.
2. CDN link - <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
AngularJS is a JavaScript framework that helps build web applications.
AngularJS is an excellent framework for building both Single Page Applications (SPA)
Google is the company that developed AngularJS.
What are the benefits of using AngularJS
1. Two Way Data-Binding : The Two Way Data-Binding, keeps the model and the view in sync all the times, that is if you change in the model, view gets updated and if you change in the view, model gets updated.
2. Dependency Injection :
3. Testing : It is very easy to test any of it's components through both unit testing and end to end testing with Angular.
4. Model View Controller : With angular it is very easy to develop applications in a clean MVC way. You should split your application code into MVC components. The rest is managed with components and connecting them together is done by angular.
5. Other Benifits : Controlling the behaviour of DOM elements using directives and the flexibility that angular filters provide.
What to do to build angular applications?
All you need is one script file angular.js.
To get the script file:
1. You can download the angular script file from https://angularjs.org.
2. CDN link - <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>