Categories: Javascript

AngularJS Key Concepts – Part 1

The article represents certain key concepts of AngularJS javascript framework. I shall be writing further articles presenting my learning as I go ahead.

  • AngularJS is a great (so-called Super-heroic) framework if you want to build single page applications (SPA) consisting of multiple views (smaller web pages so to say). That said, it is not limited to SPAs and could be used with any kind of web applications. If you have worked in past with JQuery, you would be amazed to see the simplicity that AngularJS brings on the table with respect to DOM manipulation. Just this feature has got me on board with Angular.
  • Modular framework: Angular is a modular framework. Angular modules, simply speaking, are containers. They could be used to create some of the following:
    • Controller
    • Directive
    • Filter
    • Config
    • Factory/Provider/Services
  • Key Characteristics: Following are the areas where AngularJS shines or, in other words, key characteristics:
    • MVC (Model-view-controller)
    • Views have directives, filters etc. There could be multiple views on a single page. There could be different views such as mobile, desktop etc.
    • Controllers is used to provide methods to act upon the views. Each view need to be associated with a controller. It is the route that configures a view with a controller. Controller and View are glued together using $scope object.
    • Controllers use services/factories/providers etc to provide CRUDs etc.
    • DOM manipulation (jqLite)
    • Data binding
    • Routing: The concept is key to SPA. It is used to load different views and controllers based on different routes.
    • Directives: There are out-of-the-box directives available from Angular. That said, one could also create custom directives as and when required. Some of the most commonly used directives are ng-app, ng-model, ng-click, ng-submit, ng-repeat, ng-controller etc.
    • Ajax/Promises (Async)
    • Object/module/view loading
    • Dependency injection
    • Testing
  • Key Terminologies
    • $scope: It is very important to understand the concept behind $scope when understanding Angular views and controllers. $scope acts as a glue between view and controller. Angular automatically inserts/injects (using inbuilt dependency injection) a scope object into a controller as the controller gets used. As the ng-controller is applied to an element such as body or div, the scope becomes available to the view.
  • Important AngularJS bookmarks for Developers

 

[adsenseyu1]

Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Share
Published by
Ajitesh Kumar

Recent Posts

Agentic Reasoning Design Patterns in AI: Examples

In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…

3 weeks ago

LLMs for Adaptive Learning & Personalized Education

Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…

4 weeks ago

Sparse Mixture of Experts (MoE) Models: Examples

With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…

1 month ago

Anxiety Disorder Detection & Machine Learning Techniques

Anxiety is a common mental health condition that affects millions of people around the world.…

1 month ago

Confounder Features & Machine Learning Models: Examples

In machine learning, confounder features or variables can significantly affect the accuracy and validity of…

1 month ago

Credit Card Fraud Detection & Machine Learning

Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…

1 month ago