forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavigation.json
More file actions
1598 lines (1598 loc) · 59.5 KB
/
Copy pathnavigation.json
File metadata and controls
1598 lines (1598 loc) · 59.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"TopBar": [
{
"url": "docs",
"title": "Docs"
},
{
"url": "resources",
"title": "Community"
},
{
"url": "https://blog.angular.io/",
"title": "Blog"
}
],
"TopBarNarrow": [
{
"title": "About Angular",
"children": [
{
"url": "features",
"title": "Features"
},
{
"url": "resources",
"title": "Resources"
},
{
"url": "events",
"title": "Events"
},
{
"url": "https://blog.angular.io/",
"title": "Blog"
}
]
}
],
"SideNav": [
{
"url": "docs",
"title": "Introduction",
"tooltip": "Welcome to the Angular documentation set.",
"hidden": false
},
{
"title": "Getting started",
"tooltip": "Set up your environment and learn basic concepts",
"children": [
{
"url": "guide/what-is-angular",
"title": "What is Angular?",
"tooltip": "A brief description of the Angular platform."
},
{
"title": "Try it",
"tooltip": "Examine and work with a ready-made sample app, with no setup.",
"children": [
{
"url": "start",
"title": "Getting started",
"tooltip": "Take a look at Angular's component model, template syntax, and component communication."
},
{
"url": "start/start-routing",
"title": "Adding navigation",
"tooltip": "Navigate among different page views using the browser's URL."
},
{
"url": "start/start-data",
"title": "Managing data",
"tooltip": "Use services and access external data via HTTP."
},
{
"url": "start/start-forms",
"title": "Using forms for user input",
"tooltip": "Learn about fetching and managing data from users with forms."
},
{
"url": "start/start-deployment",
"title": "Deploying an application",
"tooltip": "Move to local development, or deploy your application to Firebase or your own server."
}
]
},
{
"url": "guide/setup-local",
"title": "Setup",
"tooltip": "Setting up for local development with the Angular CLI."
}
]
},
{
"title": "Understanding Angular",
"tooltip": "Learn the essential concepts to become a proficient Angular developer.",
"children": [
{
"title": "Overview",
"url": "guide/understanding-angular-overview",
"tooltip": "Learn about the most common parts of an Angular application."
},
{
"title": "Components",
"tooltip": "Learn more about how to use data binding to build dynamic views",
"children": [
{
"url": "guide/component-overview",
"title": "Overview",
"tooltip": "Overview of how to create Angular components."
},
{
"url": "guide/lifecycle-hooks",
"title": "Component lifecycle",
"tooltip": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them."
},
{
"url": "guide/view-encapsulation",
"title": "View encapsulation",
"tooltip": "Describes how component CSS styles are encapsulated into a component's view."
},
{
"url": "guide/component-interaction",
"title": "Component interaction",
"tooltip": "Share information between different directives and components."
},
{
"url": "guide/component-styles",
"title": "Component styles",
"tooltip": "Add CSS styles that are specific to a component."
},
{
"url": "guide/inputs-outputs",
"title": "Sharing data between child and parent directives and components",
"tooltip": "Introductory guide to sharing data between parent and child directives or components."
},
{
"url": "guide/content-projection",
"title": "Content projection",
"tooltip": "Learn how to create reusable components using Angular's content projection feature."
},
{
"url": "guide/dynamic-component-loader",
"title": "Dynamic components",
"tooltip": "Load components dynamically."
},
{
"url": "guide/elements",
"title": "Angular elements",
"tooltip": "Convert components to Custom Elements."
}
]
},
{
"title": "Templates",
"tooltip": "Syntax to use in templates for binding, expressions, and directives.",
"children": [
{
"url": "guide/template-overview",
"title": "Overview",
"tooltip": "Introduction to templates."
},
{
"url": "guide/template-syntax",
"title": "Introduction",
"tooltip": "Introduction to writing templates that display data and consume user events with the help of data binding."
},
{
"url": "guide/interpolation",
"title": "Text interpolation",
"tooltip": "An introduction to interpolation and expressions in HTML."
},
{
"url": "guide/template-statements",
"title": "Template statements",
"tooltip": "Introductory guide to statements in templates that respond to events that components, directives, or elements raise."
},
{
"title": "Binding",
"tooltip": "A binding connects a template and a component.",
"children": [
{
"url": "guide/binding-overview",
"title": "Understanding binding",
"tooltip": "Introductory guide to binding."
},
{
"url": "guide/property-binding",
"title": "Property binding",
"tooltip": "Learn how to use property binding."
},
{
"url": "guide/attribute-binding",
"title": "Attribute binding",
"tooltip": "Learn how to use attribute binding."
},
{
"url": "guide/class-binding",
"title": "Class and style binding",
"tooltip": "Learn how to use class and style binding."
},
{
"url": "guide/event-binding",
"title": "Event binding",
"tooltip": "Learn how to use to event binding."
},
{
"url": "guide/two-way-binding",
"title": "Two-way binding",
"tooltip": "Learn how to share data between a class and a template."
}
]
},
{
"title": "Pipes",
"tooltip": "Pipes transform displayed values within a template.",
"children": [
{
"url": "guide/pipes-overview",
"title": "Understanding pipes",
"tooltip": "Introductory guide to pipes."
},
{
"url": "guide/pipe-template",
"title": "Using a pipe in a template",
"tooltip": "Learn how to use a pipe in a template."
},
{
"url": "guide/pipes-transform-data",
"title": "Transforming data with parameters and chained pipes",
"tooltip": "Learn how to use a pipe transform data."
},
{
"url": "guide/pipe-precedence",
"title": "Pipe precedence in template expressions",
"tooltip": "How to use pipes within a ternary operator expression."
}
]
},
{
"url": "guide/template-reference-variables",
"title": "Template reference variables",
"tooltip": "Introductory guide to referring to DOM elements within a template."
},
{
"url": "guide/svg-in-templates",
"title": "SVG as templates",
"tooltip": "Learn how to use SVGs as templates for Angular applications."
}
]
},
{
"title": "Directives",
"tooltip": "Control the behavior of elements and the layout of your pages with directives.",
"children": [
{
"url": "guide/built-in-directives",
"title": "Built-in directives",
"tooltip": "Introductory guide to some of the most popular built-in directives."
},
{
"url": "guide/attribute-directives",
"title": "Attribute directives",
"tooltip": "Attribute directives attach behavior to elements."
},
{
"url": "guide/structural-directives",
"title": "Structural directives",
"tooltip": "Structural directives manipulate the layout of the page."
},
{
"url": "guide/directive-composition-api",
"title": "Directive composition API",
"tooltip": "Apply directive to host elements."
}
]
},
{
"title": "Dependency injection",
"tooltip": "Dependency injection: creating and injecting services",
"children": [
{
"url": "guide/dependency-injection-overview",
"title": "Dependency injection in Angular",
"tooltip": "Dependency injection is a design pattern in which a class requests dependencies from external sources."
},
{
"url": "guide/dependency-injection",
"title": "Understanding dependency injection",
"tooltip": "Angular's dependency injection system creates and delivers dependent services to Angular-created classes."
},
{
"url": "guide/creating-injectable-service",
"title": "Creating an injectable service",
"tooltip": "Example of creating an injectable service."
},
{
"url": "guide/dependency-injection-providers",
"title": "Defining dependency providers",
"tooltip": "A provider factory function is a plain function that Angular can call to create a dependency."
},
{
"url": "guide/dependency-injection-context",
"title": "Injection context",
"tooltip": "Dependency injection depends on a runtime context to work."
},
{
"url": "guide/hierarchical-dependency-injection",
"title": "Hierarchical injectors",
"tooltip": "Hierarchical dependency injection enables you to share dependencies between different parts of the application only when and if you need to."
}
]
}
]
},
{
"title": "Developer guides",
"tooltip": "Learn more about how to use Angular to build your applications.",
"children": [
{
"url": "guide/developer-guide-overview",
"title": "Overview",
"tooltip": "A list of developer guides for building Angular applications."
},
{
"title": "Standalone",
"tooltip": "Learn about Angular's standalone APIs and how to convert your application to them.",
"children": [
{
"url": "guide/standalone-components",
"title": "Standalone components",
"tooltip": "Standalone components, directives, and pipes"
},
{
"url": "guide/standalone-migration",
"title": "Migrating to standalone",
"tooltip": "Migrate your application to Angular's standalone APIs"
}
]
},
{
"title": "Change detection",
"tooltip": "Learn how Angular updates the view based on data changes and how to keep your application fast",
"children": [
{
"url": "guide/change-detection",
"title": "Overview",
"tooltip": "Introduces the basics of Angular's change detection"
},
{
"url": "guide/change-detection-zone-pollution",
"title": "Zone pollution",
"tooltip": "Explains how Zone.js works and what are the common pitfalls that can slow an application down"
},
{
"url": "guide/change-detection-slow-computations",
"title": "Slow computations",
"tooltip": "Learn how to make your application faster by discovering and optimizing slow calculations"
},
{
"url": "guide/change-detection-skipping-subtrees",
"title": "Skipping component subtrees",
"tooltip": "Learn how to skip change detection in component subtrees using OnPush change detection strategy"
}
]
},
{
"title": "Routing and navigation",
"tooltip": "Learn how to use Angular Router to build in-app navigation between views.",
"children": [
{
"url": "guide/routing-overview",
"title": "Overview",
"tooltip": "Introduces the Angular Router and lists topics that teach you how to add the router to your applications."
},
{
"url": "guide/router",
"title": "Common routing tasks",
"tooltip": "Task-based content on many of the common tasks associated with Angular routing, such as defining routs, setting up wildcard routes, and redirects."
},
{
"url": "guide/router-tutorial",
"title": "Tutorial: routing in single-page applications",
"tooltip": "A tutorial that covers many patterns associated with Angular routing."
},
{
"url": "guide/routing-with-urlmatcher",
"title": "Tutorial: creating custom route matches",
"tooltip": "Learn how to create a custom URL matcher with the Angular router."
},
{
"url": "guide/router-tutorial-toh",
"title": "Tutorial: adding routing to Tour of Heroes",
"tooltip": "Explore how to use Angular's router. Based on the Tour of Heroes example."
},
{
"url": "guide/router-reference",
"title": "Router reference",
"tooltip": "Describes highlight some core router API concepts."
}
]
},
{
"title": "Forms",
"tooltip": "Forms creates a cohesive, effective, and compelling data entry experience.",
"children": [
{
"url": "guide/forms-overview",
"title": "Introduction",
"tooltip": "An Angular form coordinates a set of data-bound user controls, tracks changes, validates input, and presents errors."
},
{
"url": "guide/reactive-forms",
"title": "Reactive forms",
"tooltip": "Create a reactive form using FormBuilder, groups, and arrays."
},
{
"url": "guide/typed-forms",
"title": "Strictly typed reactive forms in depth",
"tooltip": "A deep-dive into the reactive forms types."
},
{
"url": "guide/form-validation",
"title": "Validate form input",
"tooltip": "Validate user's form entries."
},
{
"url": "guide/dynamic-form",
"title": "Building dynamic forms",
"tooltip": "Create dynamic form templates using FormGroup."
}
]
},
{
"url": "guide/esbuild",
"title": "esbuild-based Builds",
"tooltip": "Getting started with the CLI's esbuild-based build system."
},
{
"title": "HTTP client",
"tooltip": "Use HTTP to talk to a remote server.",
"children": [
{
"url": "guide/understanding-communicating-with-http",
"title": "Understanding HTTP",
"tooltip": "Understanding communicating with backend services using HTTP"
},
{
"url": "guide/http-setup-server-communication",
"title": "Setup for server communication",
"tooltip": "Setup a server communication for HTTP"
},
{
"url": "guide/http-request-data-from-server",
"title": "Request data from a server",
"tooltip": "Learn how to request data from the server via the HTTP client"
},
{
"url": "guide/http-make-jsonp-request",
"title": "Make a JSONP request",
"tooltip": "Make a cross-origin request via JSONP"
},
{
"url": "guide/http-handle-request-errors",
"title": "Handle request errors",
"tooltip": "Error handling"
},
{
"url": "guide/http-send-data-to-server",
"title": "Send data to a server",
"tooltip": "Learn how to send data to a server via the HTTP client"
},
{
"url": "guide/http-configure-http-url-parameters",
"title": "Configure URL parameters",
"tooltip": "Learn how to configure parameters of the URL when sending requests over HTTP"
},
{
"url": "guide/http-intercept-requests-and-responses",
"title": "Intercept requests and responses",
"tooltip": "Learn how to use HTTP interceptors to transform requests and responses"
},
{
"url": "guide/http-interceptor-use-cases",
"title": "Interceptor use-cases",
"tooltip": "Learn when to use HTTP interceptors"
},
{
"url": "guide/http-pass-metadata-to-interceptors",
"title": "Pass metadata to interceptors",
"tooltip": "Learn how to pass metadata to interceptors"
},
{
"url": "guide/http-track-show-request-progress",
"title": "Track and show request progress",
"tooltip": "Learn how to track and show progress when sending HTTP requests"
},
{
"url": "guide/http-optimize-server-interaction",
"title": "Optimize server communication",
"tooltip": "Learn how to use debouncing to optimize server interaction"
},
{
"url": "guide/http-security-xsrf-protection",
"title": "Cross-Site Request Forgery (XSRF) protection",
"tooltip": "Learn how to secure your website against Cross-Site Request Forgery"
},
{
"url": "guide/http-test-requests",
"title": "Test requests",
"tooltip": "Learn how to test logic that uses the HTTP client"
}
]
},
{
"url": "guide/hydration",
"title": "Hydration",
"tooltip": "How to enable hydration on your server rendered applications."
},
{
"url": "guide/defer",
"title": "Deferrable views",
"tooltip": "How to defer load components, directives, and pipes."
},
{
"url": "guide/image-directive",
"title": "Image optimization",
"tooltip": "Performant images with the Angular image directive."
},
{
"title": "Testing",
"tooltip": "Testing your Angular apps.",
"children": [
{
"url": "guide/testing",
"title": "Intro to testing",
"tooltip": "Introduction to testing an Angular app."
},
{
"url": "guide/testing-code-coverage",
"title": "Code coverage",
"tooltip": "Determine how much of your code is tested."
},
{
"url": "guide/testing-services",
"title": "Testing services",
"tooltip": "How to test services."
},
{
"url": "guide/testing-components-basics",
"title": "Basics of testing components",
"tooltip": "The fundamentals of how to test components."
},
{
"url": "guide/testing-components-scenarios",
"title": "Component testing scenarios",
"tooltip": "Use cases for testing components."
},
{
"url": "guide/testing-attribute-directives",
"title": "Testing attribute directives",
"tooltip": "How to test attribute directives."
},
{
"url": "guide/testing-pipes",
"title": "Testing pipes",
"tooltip": "Writing tests for pipes."
},
{
"url": "guide/test-debugging",
"title": "Debugging tests",
"tooltip": "How to debug tests."
},
{
"url": "guide/testing-utility-apis",
"title": "Testing utility APIs",
"tooltip": "Features of the Angular testing utilities."
}
]
},
{
"title": "Internationalization",
"tooltip": "Translate the text of your application text into multiple languages",
"children": [
{
"url": "guide/i18n-overview",
"title": "Overview",
"tooltip": "Introduces the Angular internationalization and lists topics that teach you how to localize your applications"
},
{
"title": "Common internationalization tasks",
"tooltip": "Task-based content on many of the common tasks associated with Angular internationalization, such as adding the locale package and formatting data for a locale",
"children": [
{
"url": "guide/i18n-common-overview",
"title": "Overview",
"tooltip": "Introduces the common Angular internationalization tasks and lists topics that teach you how to localize your applications"
},
{
"url": "guide/i18n-common-add-package",
"title": "Add the localize package",
"tooltip": "Add the Angular localize package"
},
{
"url": "guide/i18n-common-locale-id",
"title": "Refer to locales by ID",
"tooltip": "Reference using locale IDs"
},
{
"url": "guide/i18n-common-format-data-locale",
"title": "Format data based on locale",
"tooltip": "Format data based on locale"
},
{
"url": "guide/i18n-common-prepare",
"title": "Prepare component for translation",
"tooltip": "Prepare component for translation"
},
{
"url": "guide/i18n-common-translation-files",
"title": "Work with translation files",
"tooltip": "Work with translation files"
},
{
"url": "guide/i18n-common-merge",
"title": "Merge translations into the app",
"tooltip": "Merge translations into your app"
},
{
"url": "guide/i18n-common-deploy",
"title": "Deploy multiple locales",
"tooltip": "Deploy multiple locale for your app"
}
]
},
{
"url": "guide/i18n-example",
"title": "Example Angular application",
"tooltip": "Example of a translated Angular application"
},
{
"title": "Optional internationalization practices",
"tooltip": "Task-based content on many of the optional pratices associated with Angular internationalization",
"children": [
{
"url": "guide/i18n-optional-overview",
"title": "Overview",
"tooltip": "Introduces the optional Angular internationalization tasks and lists topics that teach you how to manually configure localization settings for your applications"
},
{
"url": "guide/i18n-optional-import-global-variants",
"title": "Import global variants of the locale data",
"tooltip": "Import global variants of the locale data"
},
{
"url": "guide/i18n-optional-manage-marked-text",
"title": "Manage marked text with custom IDs",
"tooltip": "Manage marked text with custom IDs"
}
]
}
]
},
{
"title": "Animations",
"tooltip": "Enhance the user experience with animation.",
"children": [
{
"url": "guide/animations",
"title": "Introduction",
"tooltip": "Basic techniques in Angular animations."
},
{
"url": "guide/transition-and-triggers",
"title": "Transition and Triggers",
"tooltip": "Advanced techniques in transition and triggers."
},
{
"url": "guide/complex-animation-sequences",
"title": "Complex Sequences",
"tooltip": "Complex Angular animation sequences."
},
{
"url": "guide/reusable-animations",
"title": "Reusable Animations",
"tooltip": "Creating reusable animations."
},
{
"url": "guide/route-animations",
"title": "Route transition animations",
"tooltip": "Animate route transitions."
}
]
},
{
"title": "Service Workers & PWA",
"tooltip": "Angular service workers: Controlling caching of application resources.",
"children": [
{
"url": "guide/service-worker-intro",
"title": "Introduction",
"tooltip": "Angular's implementation of service workers improves user experience with slow or unreliable network connectivity."
},
{
"url": "guide/service-worker-getting-started",
"title": "Getting started",
"tooltip": "Enabling the service worker in a CLI project and observing behavior in the browser."
},
{
"url": "guide/service-worker-communications",
"title": "Service worker communication",
"tooltip": "Services that enable you to interact with an Angular service worker."
},
{
"url": "guide/service-worker-notifications",
"title": "Service worker notifications",
"tooltip": "Configuring service worker notification behavior."
},
{
"url": "guide/service-worker-devops",
"title": "Service worker in production",
"tooltip": "Running apps with service workers, managing app update, debugging, and killing apps."
},
{
"url": "guide/service-worker-config",
"title": "Service worker configuration",
"tooltip": "Configuring service worker caching behavior."
},
{
"url": "guide/app-shell",
"title": "App shell",
"tooltip": "Render a portion of your app quickly to improve the startup experience."
}
]
},
{
"url": "guide/web-worker",
"title": "Web workers",
"tooltip": "Using web workers for background processing."
},
{
"url": "guide/ssr",
"title": "Server-side rendering",
"tooltip": "Render HTML server-side."
},
{
"url": "guide/prerendering",
"title": "Prerendering",
"tooltip": "Prerender HTML server-side with Angular Universal."
},
{
"title": "Angular Libraries",
"tooltip": "Extending Angular with shared libraries.",
"children": [
{
"url": "guide/libraries",
"title": "Libraries overview",
"tooltip": "Understand how and when to use or create libraries."
},
{
"url": "guide/using-libraries",
"title": "Using published libraries",
"tooltip": "Integrate published libraries into an app."
},
{
"url": "guide/creating-libraries",
"title": "Creating libraries",
"tooltip": "Extend Angular by creating, publishing, and using your own libraries."
},
{
"url": "guide/angular-package-format",
"title": "Angular package format",
"tooltip": "Information about the Angular Package Format."
}
]
},
{
"title": "Feature preview",
"tooltip": "Angular preview features and APIs",
"children": [
{
"url": "guide/control_flow",
"title": "Built-in control flow",
"tooltip": "Angular built-in control flow: if, for and switch"
},
{
"url": "guide/signals",
"title": "Signals",
"tooltip": "Angular signals for optimized change detection"
},
{
"url": "guide/rxjs-interop",
"title": "RxJS Interop for Signals",
"tooltip": "Angular signals and Observable interop"
}
]
}
]
},
{
"title": "Best practices",
"tooltip": "Learn how to build robust, scalable applications.",
"children": [
{
"url": "guide/security",
"title": "Security",
"tooltip": "Developing for content security in Angular applications."
},
{
"url": "guide/accessibility",
"title": "Accessibility",
"tooltip": "Design apps to be accessible to all users."
},
{
"url": "guide/updating",
"title": "Keeping up-to-date",
"tooltip": "Information about updating Angular applications and libraries to the latest version."
},
{
"url": "guide/property-binding-best-practices",
"title": "Property binding best practices",
"tooltip": "Use property binding efficiently."
},
{
"url": "guide/lazy-loading-ngmodules",
"title": "Lazy loading feature modules",
"tooltip": "Lazy load modules to speed up your apps."
},
{
"url": "guide/lightweight-injection-tokens",
"title": "Lightweight injection tokens for libraries",
"tooltip": "Optimize client app size by designing library services with lightweight injection tokens."
}
]
},
{
"title": "Angular tools",
"tooltip": "Tools to help you build your Angular applications.",
"children": [
{
"title": "Development workflow",
"tooltip": "Build, and deployment information.",
"children": [
{
"url": "guide/deployment",
"title": "Deploying applications",
"tooltip": "Learn how to deploy your Angular app."
},
{
"title": "AOT compiler",
"tooltip": "Understanding ahead-of-time compilation.",
"children": [
{
"url": "guide/aot-compiler",
"title": "Ahead-of-Time compilation",
"tooltip": "Learn why and how to use the Ahead-of-Time (AOT) compiler."
},
{
"url": "guide/angular-compiler-options",
"title": "Angular compiler options",
"tooltip": "Configuring AOT compilation."
},
{
"url": "guide/aot-metadata-errors",
"title": "AOT metadata errors",
"tooltip": "Troubleshooting AOT compilation."
},
{
"url": "guide/template-typecheck",
"title": "Template type-checking",
"tooltip": "Template type-checking in Angular."
}
]
},
{
"url": "guide/build",
"title": "Building & serving",
"tooltip": "Building and serving Angular apps."
}
]
},
{
"url": "guide/cli-builder",
"title": "CLI builders",
"tooltip": "Using builders to customize Angular CLI."
},
{
"url": "guide/language-service",
"title": "Language service",
"tooltip": "Use Angular Language Service to speed up dev time."
},
{
"title": "DevTools",
"tooltip": "DevTools",
"url": "guide/devtools"
},
{
"title": "Schematics",
"tooltip": "Understanding schematics.",
"children": [
{
"url": "guide/schematics",
"title": "Schematics Overview",
"tooltip": "Extending CLI generation capabilities."
},
{
"url": "guide/schematics-authoring",
"title": "Authoring schematics",
"tooltip": "Understand the structure of a schematic."
},
{
"url": "guide/schematics-for-libraries",
"title": "Schematics for libraries",
"tooltip": "Use schematics to integrate your library with the Angular CLI."
}
]
}
]
},
{
"title": "Tutorials",
"tooltip": "End-to-end tutorials for learning Angular concepts and patterns.",
"children": [
{
"title": "Tutorial: Your first Angular app",
"tooltip": "Learn how to get started in Angular by building an Angular app",
"children": [
{
"url": "tutorial/first-app",
"title": "Introduction",
"tooltip": "Introduction to the first Angular app and tutorial"
},
{
"url": "tutorial/first-app/first-app-lesson-01",
"title": "Hello world",
"tooltip": "Start coding in Angular with Hello World"
},
{
"url": "tutorial/first-app/first-app-lesson-02",
"title": "Create home component",
"tooltip": "Create the app's HomeComponent"
},
{
"url": "tutorial/first-app/first-app-lesson-03",
"title": "Create housing location component",
"tooltip": "Create the app's HousingLocation"
},
{
"url": "tutorial/first-app/first-app-lesson-04",
"title": "Create an interface",
"tooltip": "Create an interface for your app"
},
{
"url": "tutorial/first-app/first-app-lesson-05",
"title": "Add inputs to components",
"tooltip": "Add inputs to components in your app"
},
{
"url": "tutorial/first-app/first-app-lesson-06",
"title": "Add property binding to components",
"tooltip": "Add property binding to components in your app"
},
{
"url": "tutorial/first-app/first-app-lesson-07",
"title": "Add dynamic values to templates",
"tooltip": "Add dynamic values to your templates in your app"
},
{
"url": "tutorial/first-app/first-app-lesson-08",
"title": "Use *ngFor in templates",
"tooltip": "Use *ngFor in your templates in your app"
},
{
"url": "tutorial/first-app/first-app-lesson-09",
"title": "Angular services",
"tooltip": "Add an Angular service to your app"
},
{
"url": "tutorial/first-app/first-app-lesson-10",
"title": "Add routing",
"tooltip": "Add routing to your app"
},
{
"url": "tutorial/first-app/first-app-lesson-11",
"title": "Customize the details page",
"tooltip": "Add styles, links and more to the details page"
},
{
"url": "tutorial/first-app/first-app-lesson-12",
"title": "Integrate Angular forms",
"tooltip": "Add an Angular form to your app"
},
{
"url": "tutorial/first-app/first-app-lesson-13",
"title": "Add search functionality",
"tooltip": "Add search functionality to your app"
},
{
"url": "tutorial/first-app/first-app-lesson-14",
"title": "Add HTTP communication",
"tooltip": "Add HTTP communication to your app"