-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.json
2468 lines (2468 loc) · 92.6 KB
/
map.json
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
{
"$schema": "./../scripts/documentation/map-schema.json",
"title": "Documentation map reference",
"description": "This is used to create documentation routing and hierarchy on the nx.dev website.",
"content": [
{
"name": "Nx",
"id": "nx-documentation",
"description": "Nx documentation for you to discover!",
"itemList": [
{
"name": "Getting Started",
"id": "getting-started",
"description": "Get started with basic information, concepts and tutorials.",
"itemList": [
{
"name": "Intro to Nx",
"id": "intro",
"file": "shared/getting-started/intro"
},
{
"name": "Installation",
"id": "installation",
"file": "shared/getting-started/installation"
},
{
"name": "Why Nx?",
"id": "why-nx",
"file": "shared/getting-started/why-nx"
},
{
"name": "Tutorials",
"id": "tutorials",
"description": "Get started with basic information, concepts and tutorials.",
"itemList": [
{
"name": "Package-Based Monorepo",
"id": "package-based-repo-tutorial",
"file": "shared/npm-tutorial/package-based"
},
{
"name": "Integrated Monorepo",
"id": "integrated-repo-tutorial",
"file": "shared/npm-tutorial/integrated"
},
{
"name": "React Standalone",
"id": "react-standalone-tutorial",
"file": "shared/react-standalone-tutorial/react-standalone"
},
{
"name": "React Monorepo",
"id": "react-monorepo-tutorial",
"file": "shared/react-tutorial/react-monorepo"
},
{
"name": "Angular Standalone",
"id": "angular-standalone-tutorial",
"file": "shared/angular-standalone-tutorial/angular-standalone"
},
{
"name": "Angular Monorepo",
"id": "angular-monorepo-tutorial",
"file": "shared/angular-tutorial/angular-monorepo"
},
{
"name": "Vue Standalone",
"id": "vue-standalone-tutorial",
"file": "shared/vue-standalone-tutorial/vue-standalone"
},
{
"name": "Node Standalone",
"id": "node-server-tutorial",
"file": "shared/node-server-tutorial/1-code-generation"
}
]
}
]
},
{
"name": "Core Tutorial",
"id": "core-tutorial",
"description": "Learn to use Nx with this core tutorial where you will learn about all its main feature with a real project.",
"itemList": [
{
"name": "1 - Create Blog",
"id": "01-create-blog",
"file": "shared/core-tutorial/01-create-blog"
},
{
"name": "2 - Create CLI",
"id": "02-create-cli",
"file": "shared/core-tutorial/02-create-cli"
},
{
"name": "3 - Share Assets",
"id": "03-share-assets",
"file": "shared/core-tutorial/03-share-assets"
},
{
"name": "4 - Build Affected Projects",
"id": "04-build-affected-projects",
"file": "shared/core-tutorial/04-build-affected-projects"
},
{
"name": "5 - Automatically Detect Dependencies",
"id": "05-auto-detect-dependencies",
"file": "shared/core-tutorial/05-auto-detect-dependencies"
},
{
"name": "6 - Summary",
"id": "06-summary",
"file": "shared/core-tutorial/06-summary"
}
]
},
{
"name": "Angular Standalone Tutorial",
"id": "angular-standalone-tutorial",
"description": "Learn to use Nx with this Angular tutorial where you will learn about all its main feature with a real project.",
"itemList": [
{
"name": "1 - Code Generation",
"id": "1-code-generation",
"file": "shared/angular-standalone-tutorial/1-code-generation"
},
{
"name": "2 - Project Graph",
"id": "2-project-graph",
"file": "shared/angular-standalone-tutorial/2-project-graph"
},
{
"name": "3 - Task Running",
"id": "3-task-running",
"file": "shared/angular-standalone-tutorial/3-task-running"
},
{
"name": "4 - Task Pipelines",
"id": "4-task-pipelines",
"file": "shared/angular-standalone-tutorial/4-task-pipelines"
},
{
"name": "5 - Summary",
"id": "5-summary",
"file": "shared/angular-standalone-tutorial/5-summary"
}
]
},
{
"name": "Node Server Tutorial",
"id": "node-server-tutorial",
"description": "Learn to use Nx with this Node Server Tutorial where you will learn about all its main feature with a real project.",
"itemList": [
{
"name": "1 - Code Generation",
"id": "1-code-generation",
"file": "shared/node-server-tutorial/1-code-generation"
},
{
"name": "2 - Project Graph",
"id": "2-project-graph",
"file": "shared/node-server-tutorial/2-project-graph"
},
{
"name": "3 - Task Running",
"id": "3-task-running",
"file": "shared/node-server-tutorial/3-task-running"
},
{
"name": "4 - Task Pipelines",
"id": "4-task-pipelines",
"file": "shared/node-server-tutorial/4-task-pipelines"
},
{
"name": "5 - Docker Target",
"id": "5-docker-target",
"file": "shared/node-server-tutorial/5-docker-target"
},
{
"name": "6 - Summary",
"id": "6-summary",
"file": "shared/node-server-tutorial/6-summary"
}
]
},
{
"name": "Core Features",
"id": "core-features",
"description": "Learn the core features of Nx with in depth guides.",
"itemList": [
{
"name": "Run Tasks",
"description": "Learn about the various ways you can use Nx to run tasks in your workspace.",
"tags": ["run-tasks", "cache-task-results"],
"id": "run-tasks",
"file": "shared/core-features/run-tasks"
},
{
"name": "Cache Task Results",
"description": "Learn how to define cacheable tasks, how to fine-tune with inputs and outputs, where the cache is stored and much more.",
"id": "cache-task-results",
"tags": ["cache-task-results"],
"file": "shared/core-features/cache-task-results"
},
{
"name": "Use Remote Caching",
"id": "remote-cache",
"file": "",
"path": "/ci/features/remote-cache",
"isExternal": true
},
{
"name": "Distribute Task Execution",
"id": "distribute-task-execution",
"file": "",
"path": "/ci/features/distribute-task-execution",
"isExternal": true
},
{
"name": "Explore the Graph",
"id": "explore-graph",
"description": "Nx uses a graph behind the scenes to optimize your operations. You can also visualize and use the graph to better understand your workspace structure. Learn more in this guide.",
"tags": ["explore-graph"],
"file": "shared/core-features/explore-graph"
},
{
"name": "Automate Updating Dependencies",
"description": "Learn how Nx provides automated update scripts to help you keep your workspace, tooling and framework dependencies up to date.",
"id": "automate-updating-dependencies",
"tags": ["automate-updating-dependencies"],
"file": "shared/core-features/automate-updating-dependencies"
},
{
"name": "Enforce Module Boundaries",
"description": "Learn how to avoid dependency hell and scale a codebase by imposing constraints on your projects using the module boundary lint rule.",
"id": "enforce-module-boundaries",
"tags": ["enforce-module-boundaries"],
"file": "shared/core-features/enforce-module-boundaries"
},
{
"name": "Integrate with Editors",
"description": "Learn about Nx Console, an extension for VS Code and WebStorm.",
"id": "integrate-with-editors",
"tags": ["integrate-with-editors"],
"file": "shared/core-features/integrate-with-editors"
},
{
"name": "Manage Releases",
"description": "Learn how Nx provides tools to help you manage releasing your projects.",
"id": "manage-releases",
"tags": ["manage-releases"],
"file": "shared/core-features/manage-releases"
},
{
"name": "Plugin Features",
"id": "plugin-features",
"description": "Learn what is a plugin, the different type of plugins and how to create one.",
"itemList": [
{
"name": "Use Task Executors",
"id": "use-task-executors",
"tags": ["use-task-executors"],
"file": "shared/plugin-features/use-task-executors"
},
{
"name": "Use Code Generators",
"id": "use-code-generators",
"tags": ["use-code-generators"],
"file": "shared/plugin-features/use-code-generators"
}
]
}
]
},
{
"name": "Concepts",
"id": "concepts",
"description": "Learn about all the different concepts Nx uses to manage your tasks and enhance your productivity.",
"itemList": [
{
"name": "Mental Model",
"tags": ["intro"],
"id": "mental-model",
"file": "shared/mental-model"
},
{
"name": "How Caching Works",
"tags": ["cache-task-results"],
"id": "how-caching-works",
"file": "shared/concepts/how-caching-works"
},
{
"name": "Types of Configuration",
"tags": [],
"id": "types-of-configuration",
"file": "shared/concepts/types-of-configuration"
},
{
"name": "What is a Task Pipeline",
"tags": ["run-tasks", "use-task-executors"],
"id": "task-pipeline-configuration",
"file": "shared/concepts/task-pipeline-configuration"
},
{
"name": "Integrated Repos vs. Package-Based Repos vs. Standalone Apps",
"tags": ["intro", "repository-types"],
"id": "integrated-vs-package-based",
"file": "shared/concepts/integrated-vs-package-based"
},
{
"name": "Module Federation",
"id": "module-federation",
"description": "Understand more about Module Federation with NX",
"itemList": [
{
"name": "Module Federation and Nx",
"id": "module-federation-and-nx",
"tags": ["module-federation", "angular", "react"],
"file": "shared/guides/module-federation/module-federation-and-nx"
},
{
"name": "Faster Builds with Module Federation",
"id": "faster-builds-with-module-federation",
"tags": [
"use-task-executors",
"module-federation",
"angular",
"react"
],
"file": "shared/guides/module-federation/faster-builds"
},
{
"name": "Micro Frontend Architecture",
"id": "micro-frontend-architecture",
"file": "shared/guides/module-federation/micro-frontend-architecture"
},
{
"name": "Manage Library Versions with Module Federation",
"id": "manage-library-versions-with-module-federation",
"file": "shared/guides/module-federation/manage-library-versions-with-module-federation"
}
]
},
{
"name": "More Concepts",
"id": "more-concepts",
"description": "Get deeper into how Nx works and its different aspects.",
"itemList": [
{
"name": "Incremental Builds",
"id": "incremental-builds",
"tags": ["use-task-executors"],
"file": "shared/incremental-builds"
},
{
"name": "Illustrated Distributed Task Execution",
"tags": ["distribute-task-execution"],
"id": "illustrated-dte",
"file": "shared/concepts/illustrated-dte-guide"
},
{
"name": "Nx and Turborepo",
"id": "turbo-and-nx",
"mediaImage": "./shared/guides/nx-media-monorepo.jpg",
"file": "shared/guides/turbo-and-nx"
},
{
"name": "Monorepos",
"id": "why-monorepos",
"file": "shared/guides/why-monorepos"
},
{
"name": "Dependency Management",
"id": "dependency-management",
"file": "shared/concepts/dependency-management"
},
{
"name": "Code Sharing",
"id": "code-sharing",
"file": "shared/concepts/code-sharing"
},
{
"name": "Using Nx at Enterprises",
"id": "monorepo-nx-enterprise",
"tags": ["enforce-module-boundaries", "use-code-generators"],
"file": "shared/monorepo-nx-enterprise"
},
{
"name": "Nx Daemon",
"id": "nx-daemon",
"file": "shared/daemon"
},
{
"name": "Nx and the Angular CLI",
"id": "nx-and-angular",
"file": "shared/guides/nx-and-angular-cli"
},
{
"name": "Folder Structure",
"id": "folder-structure",
"file": "shared/guides/integrated-repo-folder-structure"
},
{
"name": "Nx Devkit and Angular Devkit",
"id": "nx-devkit-angular-devkit",
"tags": ["create-your-own-plugin"],
"file": "shared/guides/nx-devkit-angular-devkit"
},
{
"name": "Applications and Libraries",
"id": "applications-and-libraries",
"tags": ["enforce-module-boundaries"],
"file": "shared/workspace/applications-and-libraries"
},
{
"name": "Creating Libraries",
"id": "creating-libraries",
"tags": ["enforce-module-boundaries"],
"file": "shared/workspace/creating-libraries"
},
{
"name": "Library Types",
"id": "library-types",
"tags": ["enforce-module-boundaries"],
"file": "shared/workspace/library-types"
},
{
"name": "Grouping Libraries",
"id": "grouping-libraries",
"tags": ["enforce-module-boundaries"],
"file": "shared/workspace/grouping-libraries"
},
{
"name": "Buildable and Publishable Libraries",
"id": "buildable-and-publishable-libraries",
"file": "shared/workspace/buildable-and-publishable-libraries"
},
{
"name": "How the Project Graph is Built",
"id": "how-project-graph-is-built",
"tags": ["explore-graph"],
"file": "shared/concepts/how-project-graph-is-built"
}
]
}
]
},
{
"name": "Recipes",
"id": "recipes",
"description": "In depth recipes for common tasks",
"itemList": [
{
"name": "Tasks & Caching",
"id": "running-tasks",
"description": "A series of recipes that show how to run tasks efficiently with Nx",
"itemList": [
{
"name": "Fine-tuning Caching with Inputs",
"id": "customizing-inputs",
"tags": ["run-tasks", "cache-task-results"],
"file": "shared/recipes/running-tasks/customizing-inputs"
},
{
"name": "Defining a Task Pipeline",
"id": "defining-task-pipeline",
"tags": ["run-tasks"],
"file": "shared/recipes/running-tasks/defining-task-pipeline"
},
{
"name": "Change Cache Location",
"id": "change-cache-location",
"file": "shared/recipes/running-tasks/change-cache-location"
},
{
"name": "Running Custom Commands",
"id": "run-commands-executor",
"tags": ["run-tasks", "use-task-executors"],
"file": "shared/recipes/running-tasks/running-custom-commands"
},
{
"name": "Run Tasks in Parallel",
"id": "run-tasks-in-parallel",
"tags": ["run-tasks"],
"file": "shared/recipes/running-tasks/run-tasks-in-parallel"
},
{
"name": "Run Root-Level NPM Scripts with Nx",
"id": "root-level-scripts",
"tags": ["run-tasks"],
"file": "shared/recipes/running-tasks/root-level-scripts"
},
{
"name": "Workspace Watching",
"id": "workspace-watching",
"tags": ["run-tasks", "workspace-watching"],
"file": "shared/recipes/running-tasks/workspace-watching"
},
{
"name": "Reduce Repetitive Configuration",
"id": "reduce-repetitive-configuration",
"tags": [],
"file": "shared/recipes/running-tasks/reduce-repetitive-configuration"
}
]
},
{
"name": "Adopting Nx",
"id": "adopting-nx",
"description": "Adopting Nx incrementally, on existing project or from scratch.",
"itemList": [
{
"name": "NPM/Yarn/PNPM workspaces",
"id": "adding-to-monorepo",
"file": "shared/migration/adding-to-monorepo"
},
{
"name": "Migrate From Turborepo",
"id": "from-turborepo",
"file": "shared/migration/from-turborepo"
},
{
"name": "Add to any Project",
"id": "adding-to-existing-project",
"file": "shared/migration/adding-to-existing-project"
},
{
"name": "Nx and Lerna",
"id": "lerna-and-nx",
"file": "shared/migration/lerna-and-nx"
},
{
"name": "Preserving Git Histories",
"id": "preserving-git-histories",
"file": "shared/migration/preserving-git-histories"
},
{
"name": "Manual migration",
"id": "manual",
"file": "shared/migration/manual"
}
]
},
{
"name": "React",
"id": "react",
"description": "Advanced guides to adopt Nx in React.",
"itemList": [
{
"name": "Migrating from CRA",
"id": "migration-cra",
"file": "shared/migration/migration-cra"
},
{
"name": "React 18 Migration",
"id": "react-18",
"file": "shared/guides/react-18"
},
{
"name": "React Native with Nx",
"id": "react-native",
"file": "shared/guides/react-native"
},
{
"name": "Remix with Nx",
"id": "remix",
"file": "shared/guides/remix"
},
{
"name": "Use Environment Variables in React",
"id": "use-environment-variables-in-react",
"tags": ["environment-variables"],
"file": "shared/guides/use-environment-variables-in-react"
},
{
"name": "Using Tailwind CSS in React",
"id": "using-tailwind-css-in-react",
"file": "shared/guides/using-tailwind-css-in-react"
},
{
"name": "Adding Images, Fonts, and Files",
"id": "adding-assets-react",
"file": "shared/guides/adding-assets"
},
{
"name": "Setup Module Federation with SSR for React",
"id": "module-federation-with-ssr",
"tags": ["use-task-executors", "module-federation", "react"],
"file": "shared/recipes/module-federation-with-ssr"
},
{
"name": "Deploying Next.js applications to Vercel",
"id": "deploy-nextjs-to-vercel",
"file": "shared/recipes/deployment/deploy-nextjs-to-vercel"
}
]
},
{
"name": "Angular",
"id": "angular",
"description": "Advanced guides to adopt Nx in Angular.",
"itemList": [
{
"name": "Migration",
"id": "migration",
"itemList": [
{
"name": "Migrating from Angular CLI",
"id": "angular",
"file": "shared/migration/migration-angular"
},
{
"name": "Migrating From Multiple Angular CLI Repos",
"id": "angular-multiple",
"file": "shared/migration/angular-multiple"
},
{
"name": "Migrating Angular Application manually",
"id": "angular-manual",
"file": "shared/migration/angular-manual"
},
{
"name": "Migrating from AngularJS",
"id": "angularjs",
"file": "shared/migration/migration-angularjs"
}
]
},
{
"name": "Use Environment Variables in Angular",
"id": "use-environment-variables-in-angular",
"tags": ["environment-variables"],
"file": "shared/guides/use-environment-variables-in-angular"
},
{
"name": "Using Tailwind CSS with Angular projects",
"id": "using-tailwind-css-with-angular-projects",
"file": "shared/guides/using-tailwind-css-with-angular-projects"
},
{
"name": "Setup Module Federation with SSR for Angular",
"id": "module-federation-with-ssr",
"tags": [
"use-task-executors",
"module-federation",
"angular"
],
"file": "shared/recipes/module-federation-with-ssr"
},
{
"name": "Advanced Micro Frontends with Angular using Dynamic Federation",
"id": "dynamic-module-federation-with-angular",
"tags": [
"use-task-executors",
"module-federation",
"angular"
],
"file": "shared/guides/module-federation/dynamic-mfe-angular"
},
{
"name": "Setup incremental builds for Angular applications",
"id": "setup-incremental-builds-angular",
"file": "shared/guides/setup-incremental-builds-angular"
}
]
},
{
"name": "Node",
"id": "node",
"description": "Set of Node related recipes.",
"itemList": [
{
"name": "Deploying a Node App to Fly.io",
"id": "node-server-fly-io",
"tags": ["deployment", "node"],
"file": "shared/recipes/deployment/node-server-fly-io"
},
{
"name": "Add and Deploy Netlify Edge Functions with Node",
"id": "node-serverless-functions-netlify",
"tags": ["deployment", "node"],
"file": "shared/recipes/deployment/node-serverless-functions-netlify"
},
{
"name": "Deploying AWS lambda in Node.js",
"id": "node-aws-lambda",
"tags": ["deployment", "node"],
"file": "shared/recipes/deployment/node-aws-lambda"
},
{
"name": "Set Up Application Proxies",
"id": "application-proxies",
"tags": ["node"],
"file": "shared/recipes/node/application-proxies"
},
{
"name": "Wait for Tasks to Finish",
"id": "wait-for-tasks",
"tags": [],
"file": "shared/recipes/node/wait-for-tasks"
}
]
},
{
"name": "Storybook",
"id": "storybook",
"description": "Storybook strategies and setups.",
"itemList": [
{
"name": "Set up Storybook for React Projects",
"id": "overview-react",
"tags": ["storybook"],
"description": "This guide explains how to set up Storybook for React projects in your Nx workspace.",
"file": "shared/recipes/storybook/plugin-react"
},
{
"name": "Set up Storybook for Angular Projects",
"id": "overview-angular",
"tags": ["storybook"],
"description": "This guide explains how to set up Storybook for Angular projects in your Nx workspace.",
"file": "shared/recipes/storybook/plugin-angular"
},
{
"name": "Set up Storybook for Vue Projects",
"id": "overview-vue",
"tags": ["storybook"],
"description": "This guide explains how to set up Storybook for Vue projects in your Nx workspace.",
"file": "shared/recipes/storybook/plugin-vue"
},
{
"name": "Configuring Storybook on Nx",
"id": "configuring-storybook",
"tags": ["storybook"],
"description": "This guide explains how Storybook is configured on your Nx workspace.",
"file": "shared/recipes/storybook/configuring-storybook"
},
{
"name": "One main Storybook instance for all projects",
"id": "one-storybook-for-all",
"tags": ["storybook"],
"description": "This guide explains how to consolidate all your Storybook stories from different projects into one unified Storybook instance. Ideal for Nx workspaces leveraging a single framework.",
"file": "shared/recipes/storybook/one-storybook-for-all"
},
{
"name": "One Storybook instance per scope",
"id": "one-storybook-per-scope",
"tags": ["storybook"],
"description": "This guide explains how to set up individual Storybook instances for each scope within an Nx workspace. It provides a structured approach, emphasizing folder organization and thematic scope separation.",
"file": "shared/recipes/storybook/one-storybook-per-scope"
},
{
"name": "One main Storybook instance using Storybook Composition",
"id": "one-storybook-with-composition",
"tags": ["storybook"],
"description": "This guide explains how to publish a unified Storybook instance from multiple frameworks within an Nx workspace using Storybook Composition.",
"file": "shared/recipes/storybook/one-storybook-with-composition"
},
{
"name": "How to configure Webpack and Vite for Storybook",
"id": "custom-builder-configs",
"tags": ["storybook"],
"description": "This guide explains how to customize the webpack configuration and your vite configuration for Storybook.",
"file": "shared/recipes/storybook/custom-builder-configs"
},
{
"name": "Setting up Storybook Interaction Tests with Nx",
"id": "storybook-interaction-tests",
"tags": ["storybook"],
"description": "This guide explains how you can set up Storybook interaction tests on your Nx workspace.",
"file": "shared/recipes/storybook/interaction-tests"
},
{
"name": "Setting up Storybook Composition with Nx",
"id": "storybook-composition-setup",
"tags": ["storybook"],
"description": "This guide explains how you can set up Storybook composition on your Nx workspace.",
"file": "shared/recipes/storybook/storybook-composition-setup"
},
{
"name": "Angular: Set up Compodoc for Storybook on Nx",
"id": "angular-storybook-compodoc",
"tags": ["storybook"],
"description": "This guide explains how to set up Compodoc for Storybook on Angular projects in a Nx workspace.",
"file": "shared/recipes/storybook/angular-storybook-compodoc"
},
{
"name": "Angular: Configuring styles and preprocessor options",
"id": "angular-configuring-styles",
"tags": ["storybook"],
"description": "This document explains how to configure styles and preprocessor options in Angular projects with a Storybook configuration.",
"file": "shared/recipes/storybook/angular-configuring-styles"
}
]
},
{
"name": "Cypress",
"id": "cypress",
"description": "Cypress related recipes",
"itemList": [
{
"id": "cypress-component-testing",
"name": "Component Testing",
"description": "Component Testing",
"file": "shared/packages/cypress/cypress-component-testing"
},
{
"id": "cypress-v11-migration",
"name": "Cypress v11 Migration Guide",
"description": "Cypress v11 Migration Guide",
"file": "shared/packages/cypress/cypress-v11-migration"
}
]
},
{
"name": "Deno",
"id": "deno",
"description": "Deno related recipes",
"itemList": [
{
"name": "Add a Deno Project",
"id": "add-deno",
"tags": ["deno"],
"file": "shared/recipes/add-stack/add-deno"
},
{
"name": "Serverless deployment with Deno Deploy",
"id": "deno-deploy",
"tags": ["deployment", "deno"],
"file": "shared/recipes/deployment/deno-deploy"
},
{
"name": "Add and Deploy Netlify Edge Functions with Deno",
"id": "deno-netlify-functions",
"tags": ["deployment", "deno"],
"file": "shared/recipes/deployment/deno-netlify-edge-functions"
}
]
},
{
"name": "Next",
"id": "next",
"description": "Next related recipes",
"itemList": [
{
"id": "next-config-setup",
"name": "How to configure Next.js plugins",
"description": "How to configure Next.js plugins",
"file": "shared/packages/next/next-config-setup"
}
]
},
{
"name": "Nuxt",
"id": "nuxt",
"description": "Nuxt related recipes",
"itemList": [
{
"id": "deploy-nuxt-to-vercel",
"name": "Deploying Nuxt applications to Vercel",
"description": "A detailed guide on how to deploy Nuxt applications from Nx workspaces to Vercel.",
"file": "shared/recipes/deployment/deploy-nuxt-to-vercel"
}
]
},
{
"name": "Vite",
"id": "vite",
"description": "Vite related recipes",
"itemList": [
{
"id": "configure-vite",
"name": "Configure Vite on your Nx workspace",
"description": "Configure Vite on your Nx workspace",
"file": "shared/packages/vite/configure-vite"
}
]
},
{
"name": "Webpack",
"id": "webpack",
"description": "Webpack related recipes",
"itemList": [
{
"id": "webpack-config-setup",
"name": "How to configure webpack on your Nx workspace",
"description": "A guide on how to configure webpack on your Nx workspace, and instructions on how to customize your webpack configuration",
"file": "shared/packages/webpack/webpack-config-setup"
},
{
"id": "webpack-plugins",
"name": "Webpack plugins",
"description": "Webpack plugins",
"file": "shared/packages/webpack/webpack-plugins"
}
]
},
{
"name": "Module Federation",
"id": "module-federation",
"description": "Advanced guides to utilize Module Federation with Nx.",
"itemList": [
{
"id": "create-a-host",
"name": "How to create a Module Federation Host Application",
"description": "A guide on how to create a Module Federation Host Application in your Nx workspace",
"file": "shared/recipes/module-federation/creating-a-host"
},
{
"id": "create-a-remote",
"name": "How to create a Module Federation Remote Application",
"description": "A guide on how to create a Module Federation Remote Application in your Nx workspace",
"file": "shared/recipes/module-federation/creating-a-remote"
},
{
"id": "federate-a-module",
"name": "How to Federate a Module",
"description": "A guide on how to federate a module in your Nx workspace",
"file": "shared/recipes/module-federation/federate-a-module"
}
]
},
{
"name": "Enforce Module Boundaries",
"id": "enforce-module-boundaries",
"description": "Configuring the enforce module boundaries rule",
"itemList": [
{
"name": "Ban Dependencies with Certain Tags",
"id": "ban-dependencies-with-tags",
"tags": ["enforce-module-boundaries"],
"file": "shared/recipes/ban-dependencies-with-tags"
},
{
"name": "Tag in Multiple Dimensions",
"id": "tag-multiple-dimensions",
"tags": ["enforce-module-boundaries"],
"file": "shared/recipes/tag-multiple-dimensions"
},
{
"name": "Ban External Imports",
"id": "ban-external-imports",
"tags": ["enforce-module-boundaries"],
"file": "shared/recipes/ban-external-imports"
},
{
"name": "Tags Allow List",
"id": "tags-allow-list",
"tags": ["enforce-module-boundaries"],
"file": "shared/recipes/tags-allow-list"
}
]
},
{
"name": "Installation",
"id": "installation",
"description": "Installing Nx",
"itemList": [
{
"name": "Install Nx in a Non-Javascript Repo",
"id": "install-non-javascript",
"tags": ["installation"],
"file": "shared/recipes/installation/install-non-javascript"
},
{
"name": "Update Your Global Nx Installation",
"id": "update-global-installation",
"tags": ["installation"],
"file": "shared/recipes/installation/update-global-installation"
}
]
},
{
"name": "Tips and tricks",
"id": "tips-n-tricks",
"description": "Various tips and tricks for using Nx.",
"itemList": [
{
"name": "Add a Package-based Project in an Integrated Repo",
"id": "package-based-in-integrated",
"tags": ["repository-types"],
"file": "shared/recipes/repo-types/package-based-in-integrated"
},
{
"name": "Add an Integrated Project in a Package-based Repo",
"id": "integrated-in-package-based",
"tags": ["repository-types"],
"file": "shared/recipes/repo-types/integrated-in-package-based"
},
{
"name": "Convert from a Standalone Repository to an Integrated Repository",
"id": "standalone-to-integrated",
"tags": ["repository-types"],
"file": "shared/recipes/repo-types/standalone-to-integrated"
},
{
"name": "Configuring ESLint with Typescript",
"id": "eslint",
"file": "shared/eslint"
},
{