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-03-03 17:31:37 -08:00
"intro" : "The basic building blocks of Angular 2 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-03-03 17:31:37 -08:00
"intro" : "Interpolation and other forms of property binding help us 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
2015-10-20 16:10:44 -07:00
"forms" : {
"title" : "Forms" ,
2016-03-03 17:31:37 -08:00
"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." ,
2016-03-04 17:56:41 -08:00
"nextable" : true ,
"basics" : true
2015-10-20 16:10:44 -07:00
} ,
2015-12-15 08:02:20 +02: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" ,
"intro" : "A quick quide to Angular syntax." ,
"nextable" : true ,
"basics" : true
} ,
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-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-02-02 11:22:48 -08:00
"title" : "Http Client" ,
"intro" : "Talk to a remote server with the Angular Http Client."
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-02-05 23:27:06 -08:00
"intro" : "Details of the recommended npm packages and the different kinds of package dependencies"
} ,
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" ,
"intro" : "Discover the basics of screen navigation with the Angular 2 router."
2015-10-17 16:40:10 -07:00
} ,
2015-12-15 08:02:20 +02:00
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" ,
"intro" : "Techniques and practices for testing an Angular 2 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" ,
"intro" : "TypeScript configuration for Angular 2 developers"
} ,
2016-03-04 17:56:41 -08:00
"upgrade" : {
"title" : "Upgrading from 1.x" ,
"intro" : "Angular 1 applications can be incrementally upgraded to Angular 2."
} ,
2016-03-03 16:36:39 -08:00
2015-10-16 14:51:15 -07:00
"glossary" : {
"title" : "Glossary" ,
2016-03-04 17:56:41 -08:00
"intro" : "Brief definitions of the most important words in the Angular 2 vocabulary" ,
"hide" : true
2015-08-08 13:55:53 -07:00
}
2015-11-13 14:47:42 +00:00
}