-
Notifications
You must be signed in to change notification settings - Fork 2
/
examples.json
1839 lines (1839 loc) · 68.9 KB
/
examples.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": "https://raw.githubusercontent.com/nanlabs/awesome-nan/main/examples.schema.json",
"list": [
{
"name": "Storybook Playground",
"description": "This app was created with the goal to have examples of ours React components, hooks and libraries that are created in different packages in the repository Nancy.js.",
"url": "https://github.com/nanlabs/nancy.js/tree/main/apps/playground/",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"React",
"Storybook",
"Nancy.js"
]
},
{
"name": "@nanlabs/react-hooks",
"description": "This package contains different React hooks that can be used in different projects.",
"url": "https://www.npmjs.com/package/@nanlabs/react-hooks",
"tags": [
"Node Packages"
],
"labels": [
"React",
"Hooks",
"Custom Hooks"
]
},
{
"name": "@nanlabs/react-ui",
"description": "This library provides a set of React components that can be used in any React application",
"url": "https://www.npmjs.com/package/@nanlabs/react-ui",
"tags": [
"Node Packages"
],
"labels": [
"React",
"Components",
"UI",
"Design System"
]
},
{
"name": "@nanlabs/react-thirdparty",
"description": "This library provides a set of React components that can be used in any React application. It provides integrations with third party libraries like Google ReCaptcha and more!",
"url": "https://www.npmjs.com/package/@nanlabs/react-thirdparty",
"tags": [
"Node Packages"
],
"labels": [
"React",
"Components",
"UI",
"Design System",
"Third Party"
]
},
{
"name": "@nanlabs/thirdparty",
"description": "This library provides a set of tools that can be used in any web application. It provides integrations with third party libraries like Google ReCaptcha and more!",
"url": "https://www.npmjs.com/package/@nanlabs/thirdparty",
"tags": [
"Node Packages"
],
"labels": [
"Third Party"
]
},
{
"name": "@nanlabs/fp",
"description": "This library provides a set of tools to help you write functional code in TypeScript. It includes tools for type guards, error handling, and more!",
"url": "https://www.npmjs.com/package/@nanlabs/fp",
"tags": [
"Node Packages"
],
"labels": [
"Functional Programming",
"TypeScript"
]
},
{
"name": "@nanlabs/eslint-config",
"description": "This eslint config is used in our projects to enforce a consistent code style.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config",
"tags": [
"Node Packages"
],
"labels": [
"ESLint"
]
},
{
"name": "@nanlabs/eslint-config-ts",
"description": "This eslint config is used in our projects to enforce a consistent code style for TypeScript projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-ts",
"tags": [
"Node Packages"
],
"labels": [
"ESLint",
"TypeScript"
]
},
{
"name": "@nanlabs/eslint-config-react",
"description": "This eslint config is used in our projects to enforce a consistent code style for React projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-react",
"tags": [
"Node Packages"
],
"labels": [
"ESLint",
"React",
"TypeScript"
]
},
{
"name": "@nanlabs/eslint-config-next",
"description": "This eslint config is used in our projects to enforce a consistent code style for Next.js projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-next",
"tags": [
"Node Packages"
],
"labels": [
"ESLint",
"Next.js",
"TypeScript"
]
},
{
"name": "React Boilerplate",
"description": "A simple but powerful boilerplate to start a React project powered by Vite. Boilerplate generated using [create-awesome-node-app](https://www.npmjs.com/package/create-awesome-node-app) contains full CI/CD setup with GitHub Actions and Docker. It also contains a full local development setup with hot reload and production ready setup with minification and optimization. It also contains a full test setup with Jest and React Testing Library.",
"url": "https://github.com/nanlabs/react-boilerplate",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"React"
]
},
{
"name": "TypeScript Monorepo Boilerplate",
"description": "A simple but powerful boilerplate to start a TypeScript monorepo project powered Turborepo.",
"url": "https://github.com/nanlabs/ts-monorepo-boilerplate",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"TypeScript",
"Turborepo",
"Monorepo",
"Boilerplate",
"React",
"NPM Workspaces",
"Changesets",
"ESLint",
"Prettier",
"Jest",
"Nest.js",
"Storybook"
]
},
{
"name": "Supercharge Your Website with Core Web Vitals",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/seo-and-core-web-vitals",
"description": "Learn how to optimize your website's performance and improve SEO using Core Web Vitals. Discover the key metrics, tools, and techniques to deliver an exceptional user experience.",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Website Optimization and Performance"
],
"labels": [
"Core Web Vitals",
"SEO",
"Website Performance",
"User Experience",
"Google PageSpeed Insights",
"Lighthouse",
"Web Vitals Extension"
]
},
{
"name": "Prop Drilling",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-prop-drilling/",
"description": "This example shows how to pass data from a parent component to a child component using props.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React"
]
},
{
"name": "Context",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-context/",
"description": "This example shows how to use React Context to share data between components.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React"
]
},
{
"name": "Global State",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-global-state/",
"description": "This example shows how to use a global state using React Hooks.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React"
]
},
{
"name": "Hookstate",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-hookstate/",
"description": "This example shows how to use Hookstate to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React"
]
},
{
"name": "Teaful",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-teaful/",
"description": "This example shows how to use Teaful to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React"
]
},
{
"name": "XState",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/fsm-xstate/",
"description": "This example shows how to use XState to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"XState"
]
},
{
"name": "React Query",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/api-react-query/",
"description": "This example shows how to use React Query to fetch data from an API.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"React Query"
]
},
{
"name": "Effector",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-effector/",
"description": "This example shows how to use Effector to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Effector"
]
},
{
"name": "Akita",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-akita/",
"description": "This example shows how to use Akita to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Akita"
]
},
{
"name": "Rxjs",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-rxjs/",
"description": "This example shows how to use Rxjs to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Rxjs"
]
},
{
"name": "Storeon",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-storeon/",
"description": "This example shows how to use Storeon to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Storeon"
]
},
{
"name": "Jotai",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-jotai/",
"description": "This example shows how to use Jotai to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Jotai"
]
},
{
"name": "Recoil",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-recoil/",
"description": "This example shows how to use Recoil to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Recoil"
]
},
{
"name": "AgileTs",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-agilets/",
"description": "This example shows how to use AgileTs to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"AgileTs"
]
},
{
"name": "Zustand",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-zustand/",
"description": "This example shows how to use Zustand to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Zustand"
]
},
{
"name": "Redux Toolkit",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-redux-toolkit/",
"description": "This example shows how to use Redux Toolkit to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Redux Toolkit"
]
},
{
"name": "Rematch",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-rematch/",
"description": "This example shows how to use Rematch to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Rematch"
]
},
{
"name": "Unistore",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-unistore/",
"description": "This example shows how to use Unistore to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Unistore"
]
},
{
"name": "MobX",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-mobx/",
"description": "This example shows how to use MobX to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"MobX"
]
},
{
"name": "Valtio",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-valtio/",
"description": "This example shows how to use Valtio to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"Valtio"
]
},
{
"name": "MobX State Tree",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-mobx-state-tree/",
"description": "This example shows how to use MobX State Tree to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"MobX State Tree"
]
},
{
"name": "React Easy State",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-easy-state/",
"description": "This example shows how to use React Easy State to manage state.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"React Easy State"
]
},
{
"name": "Microfrontend with Shared React Router and React Components",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-app-react-components/",
"description": "This example has a microfrontend project that demonstrates the usage of a shared router in a React application",
"tags": [
"Examples > Frontend > Microfrontend"
],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Microfrontend with Shared React Router and React Application",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-shell-react-app-shared-routing/",
"description": "project that demonstrates the usage of a shared router in a container application made with React and an independent application made with React and Vite",
"tags": [
"Examples > Frontend > Microfrontend"
],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Microfrontend with Shared React Router and Vue Application",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-shell-react-vue-app/",
"description": "This example has a microfrontend project that demonstrates the usage of a shared router in a container application made with React and an independent application made with Vue and Vite",
"tags": [
"Examples > Frontend > Microfrontend"
],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Comparative Analysis between styled-components and Tailwind CSS",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/styled-components-vs-tailwindcss/",
"description": "Article that presents a comparative analysis of styled-components and Tailwind CSS, focusing on practical implementations of a UI Challenge using both libraries.",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Styling and CSS"
],
"labels": [
"styled-components",
"Tailwind CSS",
"CSS",
"CSS-in-JS",
"Analysis"
]
},
{
"name": "Proof of Concept: Million, The Virtual DOM Replacement for React.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/million-poc-performance/",
"description": "This is a POC that shows how to use Million and comparative analysis of Performance between Million and React.",
"tags": [
"Examples > Frontend > Virtual Dom"
],
"labels": [
"Performance",
"React",
"Virtual Dom",
"Rendering",
"Million"
]
},
{
"name": "React Security Best Practices Guide",
"description": "This checklist provides React security best practices to assist you and your team in identifying and addressing security issues within your React applications. Additionally, it includes guidance on how to automate security testing for your React code and automatically remedy any security-related issues.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-security-best-practices",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Security Best Practices"
],
"labels": [
"React",
"Security",
"Best Practices",
"Frontend",
"Automated Testing",
"Security Issues"
]
},
{
"name": "NextJS with SWR",
"description": "This example shows how to use SWR with NextJS for data fetch and mutate.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/nextjs-with-swr-example",
"tags": [
"Examples > Frontend > React State Management",
"Examples > Frontend > NextJs"
],
"labels": [
"NextJS",
"SWR",
"React",
"TypeScript"
]
},
{
"name": "SWR",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/api-swr/",
"description": "This example shows how to use SWR to fetch data from an API.",
"tags": [
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"SWR"
]
},
{
"name": "React Native with expo router",
"description": "This example shows how to use expo router with React Native.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-native-expo-router/",
"tags": [
"Examples > Frontend > React Native > Expo"
],
"labels": [
"React Native",
"Expo",
"React"
]
},
{
"name": "React Native with expo router and shared routes",
"description": "This example shows how to use expo router with React Native and shared routes.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-native-expo-router-with-shared-routes/",
"tags": [
"Examples > Frontend > React Native > Expo"
],
"labels": [
"React Native",
"Expo",
"React"
]
},
{
"name": "The Ultimate React State Management Framework",
"description": "This article presents a step-by-step framework will lead you to make informed decisions, ensuring your app is both robust and maintainable. Let's enhance your tech stack!",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/the-ultimate-react-state-management-framework",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"State Management",
"Framework",
"Best Practices",
"Frontend"
]
},
{
"name": "Navigator Clipboard API Integration Guide",
"description": "Delve into our detailed guide to integrate the Navigator Clipboard API into your web applications. Learn to implement seamless content sharing through copying text, images, and HTML directly to the clipboard, enhancing user experience and productivity.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/navigator-clipboard-api-integration",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Clipboard Integration"
],
"labels": [
"Clipboard API",
"JavaScript",
"HTML5",
"User Experience",
"Frontend Development",
"Interactivity",
"Content Sharing",
"Web Standards",
"Accessibility",
"CSS3"
]
},
{
"name": "Automation Seed",
"description": "Automation Seed is a e2e automation framework built on top of WebdriverIO v7 and Selenium that uses Selenoid for execution",
"url": "https://github.com/nanlabs/automation-seed",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"Automation",
"Selenium",
"WebdriverIO",
"Selenoid",
"Allure",
"Typescript",
"GitHub Actions",
"GitHub Pages"
]
},
{
"name": "AWS Glue ETL Boilerplate",
"description": "A complete example of an AWS Glue ETL job that uses the [Serverless Framework](https://www.serverless.com/) to deploy the infrastructure and DevContainers and/or Docker Compose to run the application locally with AWS Glue Libs, Spark, Jupyter Notebook, AWS CLI, among other tools. It provides jobs using Python Shell and PySpark.",
"url": "https://github.com/nanlabs/aws-glue-etl-boilerplate",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"Python",
"AWS",
"Glue",
"ETL",
"Serverless",
"DevContainers",
"Docker Compose"
]
},
{
"name": "Basic AWS Glue ETL example app",
"description": "A basic but useful example of an AWS Glue application that uses the [Serverless Framework](https://www.serverless.com/) to deploy the infrastructure and DevContainers and/or Docker Compose to run the application locally with AWS Glue Libs, Spark, Jupyter Notebook, AWS CLI, among other tools. It provides jobs using Python Shell and PySpark.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-glue-full-boilerplate/",
"tags": [
"Apps and Boilerplates"
],
"labels": [
"Python",
"AWS",
"Glue",
"ETL",
"Serverless",
"DevContainers",
"Docker Compose"
]
},
{
"name": "AWS CloudWatch Evidently",
"description": "A complete analysis of the service and a Proof of Concept on how to integrate it with a Node.js application.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/aws-cloudwatch-evidently/",
"tags": [
"Examples > DevOps > A/B Testing"
],
"labels": [
"Node.js",
"AWS",
"CloudWatch",
"CloudWatch Evidently",
"A/B Testing",
"Feature Flags"
]
},
{
"name": "Feature flags post by Atlassian",
"description": "How to progressively expose your features with feature flags by IAN BUCHANNAN.",
"url": "https://www.atlassian.com/continuous-delivery/principles/feature-flags",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > DevOps > A/B Testing"
],
"labels": [
"Feature Flags"
]
},
{
"name": "When to use Shell Scripts",
"description": "A guide from Google on when to use shell scripts.",
"url": "https://google.github.io/styleguide/shellguide.html#when-to-use-shell",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > DevOps > Shell Scripting and CLI Tools"
],
"labels": [
"Shell Scripting",
"Utilities"
]
},
{
"name": "Parsing Shell Script Arguments with Easy Options",
"description": "Easy options for shell scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/easy-options/",
"tags": [
"Examples > DevOps > Shell Scripting and CLI Tools"
],
"labels": [
"Shell Scripting",
"Utilities",
"Easy Options"
]
},
{
"name": "Bash as a Wrapper Utility",
"description": "Bash as a wrapper utility for other languages and tools.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/bash-as-a-wrapper-utility-basic/",
"tags": [
"Examples > DevOps > Shell Scripting and CLI Tools"
],
"labels": [
"Shell Scripting",
"Utilities"
]
},
{
"name": "Bash as a Wrapper Utility with Easy Options",
"description": "Bash as a wrapper utility for other languages and tools using Easy Options.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/bash-as-a-wrapper-utility-with-easy-options/",
"tags": [
"Examples > DevOps > Shell Scripting and CLI Tools"
],
"labels": [
"Shell Scripting",
"Utilities",
"Easy Options"
]
},
{
"name": "Actionlint Playground",
"description": "Static checker for GitHub Actions workflow files.",
"url": "https://rhysd.github.io/actionlint/",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Actionlint"
]
},
{
"name": "Markdown Lint",
"description": "This workflow validates the Markdown files in the repository using the [markdownlint action](https://github.com/marketplace/actions/markdown-lint).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/.github/workflows/markdownlint.yml",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Markdown Lint"
]
},
{
"name": "Shell Check",
"description": "This workflow validates the shell scripts in the repository using the [shellcheck action](https://github.com/ludeeus/action-shellcheck).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/.github/workflows/shellcheck.yml",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Shell Check"
]
},
{
"name": "Terraform Check",
"description": "This workflow validates the Terraform files in the repository using the [terraform action](https://github.com/dflook/terraform-fmt-check).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/.github/workflows/tf-check.yml",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Terraform"
]
},
{
"name": "TODOs to GitHub Issues",
"description": "This tutorial shows how to create a GitHub Action that converts TODO comments into GitHub issues.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/github-actions-todo-to-issue/",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"TODOs",
"Issues"
]
},
{
"name": "Automate Pull Requests Reviews using Danger",
"description": "This workflow automates the initial review of Pull Requests using [Danger.js](https://danger.systems/js/). This provides another logical step in your build, through this Danger can help lint your rote tasks in daily code review. You can use Danger to codify your teams norms. Leaving humans to think about harder problems.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/.github/workflows/pr-review.yml",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Danger.js"
]
},
{
"name": "Automation Seed example",
"description": "Different workflows to validate the code and deploy an automation report page.",
"url": "https://github.com/nanlabs/automation-seed/tree/main/.github/workflows",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"Automation"
]
},
{
"name": "React Boilerplate",
"description": "Different workflows to validate the code and deploy a React application.",
"url": "https://github.com/nanlabs/react-boilerplate/tree/main/.github/workflows",
"tags": [
"Examples > DevOps > Continuous Integration, Delivery and Deployment"
],
"labels": [
"GitHub Actions",
"React"
]
},
{
"name": "AWS Glue using Docker and Docker Compose",
"description": "Dockerfile and compose.yml for AWS Glue development with AWS Glue Libs, Spark, Jupyter Notebook, AWS CLI among other tools.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-glue/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"AWS Glue",
"Spark",
"Jupyter Notebook",
"AWS CLI"
]
},
{
"name": "Localstack using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run Localstack locally with all the necessary services. This example also includes a script to create the necessary resources in Localstack. The provided examples are for DynamoDB, S3, SQS and Kinesis.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-localstack/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"Localstack",
"DynamoDB",
"S3",
"SQS",
"Kinesis"
]
},
{
"name": "MongoDB + Mongo Express using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run MongoDB and Mongo Express locally with initialization scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-mongodb/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"MongoDB",
"Mongo Express"
]
},
{
"name": "Microsoft SQL Server using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run Microsoft SQL Server locally with initialization scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-mssql/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"Microsoft SQL Server"
]
},
{
"name": "AWS Neptune using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run AWS Neptune locally with initialization scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-neptune/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"AWS Neptune"
]
},
{
"name": "PostgreSQL using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run PostgreSQL locally with initialization scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-postgres/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"PostgreSQL"
]
},
{
"name": "Python Buildpack",
"description": "Buildpack example for Python applications.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/buildpacks-python",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Buildpack",
"Python"
]
},
{
"name": "Airflow and Spark environment using Docker and Docker Compose",
"description": "Dockerfile and compose.yml to run Airflow locally with initialization scripts.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/compose-airflow-spark/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Containers and Compositions (Docker, Docker Compose, Buildpacks and more)"
],
"labels": [
"Docker",
"Docker Compose",
"Airflow",
"Spark"
]
},
{
"name": "Exploring DevContainers: A Versatile Development Environment Solution",
"description": "Introduction to Development Containers (DevContainers), a solution to create development environments with a unique approach to address specific development environment needs",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/devcontainers-intro/",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > DevOps > Containers, Orchestration and Serverless > Development and Cloud Environments"
],
"labels": [
"DevContainer",
"VSCode DevContainer",
"GitHub Codespaces",
"Docker",
"Docker Compose"
]
},
{
"name": "AWS Glue",
"description": "DevContainer for AWS Glue development. Uses `docker-compose` to run VSCode attached to a container with all the necessary tools to develop AWS Glue jobs such us AWS Glue Libs, Spark, Jupyter Notebook, AWS CLI among other tools.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/devcontainers-glue/",
"tags": [
"Examples > DevOps > Containers, Orchestration and Serverless > Development and Cloud Environments"
],
"labels": [
"Docker",
"Docker Compose",
"DevContainer",
"VSCode DevContainer",
"GitHub Codespaces",