This document provides an introduction and overview of AngularJS, including:
1. AngularJS is an open source JavaScript framework maintained by Google to build single-page applications using MVC architecture. It features two-way data binding, routing, templates, and dependency injection.
2. The key components of AngularJS applications are controllers, views, services, and directives. Controllers handle view interaction, views present data using templates, services manage non-view logic, and directives create custom HTML elements.
3. Getting started with AngularJS only requires adding a script tag to load AngularJS and adding ng-app and ng-model directives to bind an input to a model. This provides