Guide: i18n and l10n

Internationalization (i18n) is the process of developing products in such a way that they can be localized for languages and cultures easily. Localization (l10n), is the process

2016-03-29 16:11:16
Guide: Introduction

AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML's syntax to express your application's components

2016-03-29 16:11:17
Guide: Security

This document explains some of AngularJS's security features and best practices that you should keep in mind as you build your application.

2016-03-29 16:11:18
Guide: Directives

Note: this guide is targeted towards developers who are already familiar with AngularJS basics. If you're just getting started, we recommend the tutorial

2016-03-29 16:11:14
Guide: Modules

You can think of a module as a container for the different parts of your app â controllers, services, filters, directives, etc. Why

2016-03-29 16:11:17
Guide: Controllers

In Angular, a Controller is defined by a JavaScript constructor function that is used to augment the

2016-03-29 16:11:12
Guide: Unit Testing

Improve this Doc JavaScript is a dynamically typed language which comes with great power of expression, but it also comes with almost no help from the compiler. For this reason we feel very strongly that any code written in JavaScript needs to come with a strong set of tests. We have built many features into Angular which make testing your Angular applications easy. With Angular, there is no excuse for not testing. Separation of Concerns Unit testing, as the name implies, is about testing ind

2016-03-29 16:11:19
Guide: Forms

Controls (input, select, textarea) are ways for a user to enter data. A Form is a collection of controls for the purpose of grouping

2016-03-29 16:11:15
Guide: Filters

A filter formats the value of an expression for display to the user. They can be used in view templates, controllers or services and it is easy to define your own filter.

2016-03-29 16:11:15
Guide: Services

Angular services are substitutable objects that are wired together using dependency injection

2016-03-29 16:11:19