• Image

Welcome to AngularJS

AngularJS tutorial provides basic and advanced concepts of AngularJS. Our AngularJS tutorial is designed for beginners and professionals. Angular JS is an open source JavaScript framework by Google to build web applications. It can be freely used, changed and shared by anyone. Our AngularJS tutorial includes all topics of AngularJS such as mvc, expressions, directives, controllers, modules, scopes, filters, dom, forms, ajax, validation, services, animation, dependency injection, views, w3.css etc. There are also given AngularJS interview questions to help you better understand the AngularJS

Why AngularJS ?

Dependency Injection

Two way data

Testing

MVC

  • 1 Overview of AngularJS
    • 1.1 AngularJS architecture overview
    • 1.2 The Angular Batarang
    • 1.3 Using Karma
    • 1.4 Get Setup
    • 1.5 Angular Seed Tour
    • 1.6 Build: Hello World
      • Bind tweet to input
      • Disable button, if tweet is empty
      • Character count binding
  • 2 Data Binding
    • 2.1 Wiring up a controller
    • 2.2 Binding
    • 2.3 Iteration
    • 2.4 Filters
    • 2.5 Forms binding and validation
    • 2.6 Build: A two-way bound form with validation
      • Post: add tweet to list
      • Show error validation message (tweet too long)
      • Search filter by tag/username/text
  • 3 Services and DI
    • 3.1 Overview of the built-in AngularJS services
    • 3.2 Using angular's $http and $resource services
    • 3.3 Promises
    • 3.4 Service registration and injection
    • 3.5 Using services to build a service
    • 3.6 Injecting services
    • 3.7 Build: Create a twitter search service
      • Submit simple search
      • Set result size
      • Create a paging stream (with promises)
      • Pass tests