DEV Community

Cover image for Why To Use Angular JS For Your Front-end Development!
Chirag Dave
Chirag Dave

Posted on

Why To Use Angular JS For Your Front-end Development!

If you haven’t tried Angular yet, you’re missing out something. JavaScript is the most flexible language in the world.
Most frameworks are simply a bundling of existing tools. They are not elegant. Angular is the framework where each and every tool is designed to work with every other tool in an interconnected way.

Here are some reasons why you should be using Angular today.

  1. MVC done right

Apart from other MVC, Angular implements MVC by asking you to split your app into MVC components and then Angular will do the rest thing. Angular just not manages your components but act as a mediator between all different components.

  1. A declarative user interface

Angular uses HTML to define the app’s user interface. HTML is a declarative language which is more intuitive and less convoluted than defining the interface procedurally in JavaScript.

Using Angular for attributes you can determine “what” gets loaded, but not “how”. This declarative approach greatly simplifies app development in a sort of WYSIWYG (what you see is what you get) way. You can define what you want and Angular will take care of the dependencies and this will cut down the time for how the program will flow.

  1. Data models are POJO

Data models in Angular are plain old JavaScript objects (POJO) and don’t require extraneous getter and setter functions. You can add and change properties directly on it and loop over objects and arrays at will. Your code will look much cleaner and more intuitive, the way mother nature intended.

Angular’s data models are plain objects; they behave more like a temporary storage area for people to get the data. However, Angular’s this storage work closely with a controller and view. To differentiate it from the traditional sense of data models, Angular calls them “scopes”.

All properties found on the scope object are automatically bound to the view by Angular. Meaning, Angular quietly watches for changes to these properties and updates the view automatically.

The scope has no data to begin with and relies on the controller to feed it data according to business logic needs.

  1. Flexibility with filters

Filters are designed to be standalone functions that are separate from your app, similar to Directives, but are only concerned with data transformations.

Filters are so resourceful that it is possible to create a sortable HTML table using only filters without writing any JavaScript.

  1. Write less code

All the points up till now mean that you get to write less code. You don’t need to write your own MVC pipeline. The view is defined using HTML, which is more concise. Data models are simpler to write without getters/setters. Data-binding means you don’t have to put data into the view manually. Since directives are separate from app code, they can be written by another team in parallel with minimal integration issues. Filters allow you to manipulate data on the view level without changing your controllers. So this will save the time of developers because you don’t need to write so many lines of code.

  1. DOM manipulations where they belong

Traditionally, the view modifies the DOM to present data and manipulates the DOM (or invokes jQuery) to add behavior. With Angular, DOM manipulation code should be inside directives and not in the view. Angular sees the view as just another HTML page with placeholders for data. This way of looking at the view pairs nicely with user interface designers.

By abstracting out the DOM manipulations and jQuery calls, user interface designers are able to focus on the view without those distractions.

By making your MVC app purely about presenting business data into views, and not have to worry about manipulating DOM, web app development suddenly became more fun.

  1. Context aware communication

We know that the view can be bound to properties on the current scope but scopes inherit the properties of their parent scopes. That means if a property exists on the parent scope, and a child scope modifies it, then all other scopes that inherit from the same parent will also see the same modification and their views will be updated automatically by Angular! This automated way beats using PubSub.

  1. Unit testing ready

The whole of Angular is linked together by Dependency Injection (DI). It’s what it uses to manage your controllers and scopes. Because all your controllers depend on DI to pass it information, Angular’s unit tests are able to usurp DI to perform unit testing by injecting mock data into your controller and measuring the output and behavior. In fact, Angular already has a mock HTTP provider to inject fake server responses into controllers.

This beats the more traditional way of testing web apps by creating individual test pages that invoke one component and then interacting with it to see if it works.

  1. Performance

Angular use the spa architecture (single page application) this mean that you don’t have to retrieve HTML from server side on every request. All your html files are loaded in your first server request and angular manage them in a single page.

Thanks to Angular you will minimize calling the server side which will be called only when we have to retrieve data from database or post something via Json files.

Share Your thoughts with comments Why you like Angular Js.

Top comments (1)

Collapse
 
neversaid profile image
Bernhard Reiter

Maybe its important to say, not to start any new long term Projects with AngularJS.
AngularJS is not anymore in development and has entered LTS Version until July 1, 2021.
Any new Projects should be started with Angular (angular.io) currently on Version 9.x .
But give Vue.js also a try.