IMG-LOGO

Introduction to AngularJS

andy - 08 Jan, 2016 4269 Views 0 Comment

AngularJS is an open source javascript MVC framework designed by Google. it is a great javascript framework for handling data binding, DOM manipulation, html rendering, and event handling. One of the big advantage of using this framework is it utilize the MVC idea where the separation layers of model, view and controller is really good for scalable and maintanance coding.

How to install AngularJS?

You can install the AngularJS by visiting the following site and downloading the script file.

https://angularjs.org/

Download AngularJS

If you do not want to download the file, you can use the CDN version.

https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular.min.js

Alternatively if you have npm package (require NodeJS) or Bower(require node, npm, and git), you can install the framework using the following code line in your console.

npm install angular@1.5.0-rc.0
bower install angular#1.5.0-rc.0

Browser Support

All of the modern web browsers can support AngularJS. For the Internet Explorer, it will start from version 9.0.

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Blogs

Related Tutorials

AngularJS MVC Design Pattern

So what MVC stands for MVC stands for Model View and Controller The main idea behind MVC design approach is that we have clear separation in our codes between managing the model entities presenting the data to user view and ...

Learn how to use filter in AngularJS

In this tutorial you will learn how to use the filter feature in AngularJS When you fetch the data directly from the database in JSON format for example they are usually unformatted By using the built in filter you can ...