2015-08-08 13:55:53 -07:00
{
"index" : {
2016-03-03 17:31:37 -08:00
"title" : "Documentation Overview" ,
2016-03-04 17:56:41 -08:00
"navTitle" : "Overview" ,
"description" : "How to read and use this documentation" ,
"nextable" : true ,
"basics" : true
2015-10-18 23:13:20 +01:00
} ,
2016-03-03 16:36:39 -08:00
2015-12-11 15:37:35 -08:00
"architecture" : {
2016-02-05 23:27:06 -08:00
"title" : "Architecture Overview" ,
2016-03-04 17:56:41 -08:00
"navTitle" : "Architecture" ,
2016-09-23 02:03:20 -07:00
"intro" : "The basic building blocks of Angular applications" ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-12-11 15:37:35 -08:00
} ,
2015-12-15 08:02:20 +02:00
2015-08-08 13:55:53 -07:00
"displaying-data" : {
"title" : "Displaying Data" ,
2016-09-23 19:53:50 -04:00
"intro" : "Property binding helps show app data in the UI." ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-08-08 13:55:53 -07:00
} ,
"user-input" : {
"title" : "User Input" ,
2016-03-03 17:31:37 -08:00
"intro" : "User input triggers DOM events. We listen to those events with event bindings that funnel updated values back into our components and models." ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-10-16 14:51:15 -07:00
} ,
2015-11-13 14:47:42 +00:00
2016-06-22 17:53:17 -07:00
"forms" : {
"title" : "Forms" ,
"intro" : "A form creates a cohesive, effective, and compelling data entry experience. An Angular form coordinates a set of data-bound user controls, tracks changes, validates input, and presents errors." ,
"nextable" : true ,
2016-08-09 17:38:25 +01:00
"basics" : true
2016-06-22 17:53:17 -07:00
} ,
2015-11-19 16:59:22 -08:00
"dependency-injection" : {
"title" : "Dependency Injection" ,
2016-03-03 17:31:37 -08:00
"intro" : "Angular's dependency injection system creates and delivers dependent services \"just-in-time\"." ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-10-19 09:56:24 -07:00
} ,
2015-11-13 14:47:42 +00:00
2015-10-16 20:39:30 -07:00
"template-syntax" : {
"title" : "Template Syntax" ,
2016-03-03 17:31:37 -08:00
"intro" : "Learn how to write templates that display data and consume user events with the help of data binding." ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-10-16 20:39:30 -07:00
} ,
2015-11-13 14:47:42 +00:00
2016-03-04 17:56:41 -08:00
"cheatsheet" : {
"title" : "Angular Cheat Sheet" ,
2016-09-08 15:01:39 -07:00
"intro" : "A quick guide to Angular syntax. (Content is provisional and may change.)" ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
} ,
2016-04-05 09:27:10 +03:00
2016-05-02 09:58:30 -07:00
"style-guide" : {
"title" : "Style Guide" ,
2016-09-23 02:03:20 -07:00
"intro" : "Write Angular with style." ,
2016-05-02 09:58:30 -07:00
"basics" : true
} ,
2016-10-05 15:48:55 -07:00
"glossary" : {
"title" : "Glossary" ,
"intro" : "Brief definitions of the most important words in the Angular vocabulary" ,
"basics" : true
} ,
"change-log" : {
"title" : "Change Log" ,
"intro" : "An annotated history of recent documentation improvements." ,
"basics" : true
} ,
2016-07-12 18:14:13 -07:00
"ngmodule" : {
"title" : "Angular Modules (NgModule)" ,
"intro" : "Define application modules with @NgModule"
} ,
2016-04-08 15:41:37 +03:00
"animations" : {
"title" : "Animations" ,
"intro" : "A guide to Angular's animation system."
} ,
2016-02-05 23:27:06 -08:00
"attribute-directives" : {
"title" : "Attribute Directives" ,
"intro" : "Attribute directives attach behavior to elements."
2015-11-19 16:59:22 -08:00
} ,
2015-11-13 14:47:42 +00:00
2016-09-09 19:02:02 +02:00
"browser-support" : {
"title" : "Browser support" ,
"intro" : "Browser support and polyfills guide."
} ,
2016-04-05 09:27:10 +03:00
"component-styles" : {
"title" : "Component Styles" ,
"intro" : "Learn how to apply CSS styles to components."
} ,
2016-02-05 23:27:06 -08:00
"hierarchical-dependency-injection" : {
2016-03-04 17:56:41 -08:00
"title" : "Hierarchical Dependency Injectors" ,
"navTitle" : "Hierarchical Injectors" ,
2016-02-05 23:27:06 -08:00
"intro" : "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
2015-12-10 09:40:54 -08:00
} ,
2016-03-03 16:36:39 -08:00
2015-12-01 12:15:14 +01:00
"server-communication" : {
2016-05-20 17:14:37 -07:00
"title" : "HTTP Client" ,
2016-10-19 23:17:50 -07:00
"intro" : "Use an HTTP Client to talk to a remote server."
2015-12-01 12:15:14 +01:00
} ,
2016-03-03 16:36:39 -08:00
2015-11-21 11:23:40 -08:00
"lifecycle-hooks" : {
"title" : "Lifecycle Hooks" ,
2016-01-06 10:06:01 -08:00
"intro" : "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them."
2015-11-21 11:23:40 -08:00
} ,
2016-03-03 16:36:39 -08:00
2016-02-05 23:27:06 -08:00
"npm-packages" : {
2016-03-03 16:36:39 -08:00
"title" : "Npm Packages" ,
2016-08-29 11:37:39 -04:00
"intro" : "Recommended npm packages, and how to specify package dependencies"
2016-02-05 23:27:06 -08:00
} ,
2016-03-03 16:36:39 -08:00
2016-02-05 23:27:06 -08:00
"pipes" : {
"title" : "Pipes" ,
"intro" : "Pipes transform displayed values within a template."
} ,
2016-01-06 10:06:01 -08:00
2016-02-05 23:27:06 -08:00
"router" : {
"title" : "Routing & Navigation" ,
2016-09-23 02:03:20 -07:00
"intro" : "Discover the basics of screen navigation with the Angular Router."
2015-10-17 16:40:10 -07:00
} ,
2015-12-15 08:02:20 +02:00
2016-06-22 16:43:47 -07:00
"security" : {
"title" : "Security" ,
"intro" : "Developing for content security in Angular applications"
} ,
2015-11-13 14:47:42 +00:00
"structural-directives" : {
"title" : "Structural Directives" ,
"intro" : "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements."
2015-12-15 08:02:20 +02:00
} ,
2016-03-03 16:36:39 -08:00
2016-02-05 23:27:06 -08:00
"testing" : {
"title" : "Testing" ,
2016-09-23 02:03:20 -07:00
"intro" : "Techniques and practices for testing an Angular app"
2016-02-17 19:31:42 -08:00
} ,
2016-03-03 16:36:39 -08:00
2016-02-12 17:54:22 -08:00
"typescript-configuration" : {
"title" : "TypeScript Configuration" ,
2016-09-23 02:03:20 -07:00
"intro" : "TypeScript configuration for Angular developers"
2016-02-12 17:54:22 -08:00
} ,
2016-04-05 09:27:10 +03:00
2016-03-04 17:56:41 -08:00
"upgrade" : {
"title" : "Upgrading from 1.x" ,
2016-09-29 11:15:55 -07:00
"intro" : "Incrementally upgrade an Angular 1 application to Angular 2."
2016-03-04 17:56:41 -08:00
} ,
2016-03-03 16:36:39 -08:00
2016-04-13 19:20:51 +02:00
"webpack" : {
2016-05-23 22:07:02 +02:00
"title" : "Webpack: an introduction" ,
2016-09-29 11:15:55 -07:00
"intro" : "Create Angular applications with a Webpack based tooling"
2015-08-08 13:55:53 -07:00
}
2015-11-13 14:47:42 +00:00
}