generated from best-of-lists/best-of
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathprojects.yaml
1878 lines (1874 loc) · 54.3 KB
/
projects.yaml
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
configuration:
markdown_header_file: "config/header.md"
markdown_footer_file: "config/footer.md"
categories:
- category: "ui-frameworks"
title: "UI Frameworks & Libraries"
# subtitle: ""
- category: "cms-frameworks"
title: "App Frameworks"
subtitle: "Application frameworks, content management systems, and static site generators for React."
- category: "styling"
title: "Styling"
subtitle: "CSS and component styling frameworks."
- category: "layout"
title: "Layout"
subtitle: "Components to layout the UI elements."
- category: "data-tables"
title: "Data Tables & Grids"
subtitle: "Data grid, tables, and spreadsheet components."
- category: "input-components"
title: "Input Components"
subtitle: "Input and form components."
- category: "i18"
title: "Internationalization & Localization"
- category: "state-management"
title: "State Management"
- category: "routing"
title: "Routing"
- category: "animations"
title: "Animations"
- category: "data-viz"
title: "Data Visualization"
subtitle: "Data visualization, chart and diagram components."
- category: "data-fetching"
title: "Data Fetching"
- category: "notifications"
title: "Notifications"
subtitle: "Toasts, snackbars, and notification system."
- category: "file-handling"
title: "File Handling"
subtitle: "File upload, download, and viewer components."
- category: "editors"
title: "Editor Components"
subtitle: "Editor components for code, text, images and more."
- category: "dnd"
title: "Drag & Drop"
- category: "dev-tools"
title: "Developer Tools"
subtitle: "Tools to help with React development."
- category: "desktop-apps"
title: "Desktop Applications"
subtitle: "Tools to build web-app based desktop applications."
- category: "utils"
title: "Utilities"
- category: "testing"
title: "Testing"
- category: "admin-dashboards"
title: "Admin Dashboards"
subtitle: "Admin frontend frameworks, dashboards and templates."
- category: "other-components"
title: "Other Components"
subtitle: "Collection of other components."
labels:
- label: "material-ui"
image: "https://mui.com/static/favicon.ico"
description: "Projects related to Material UI Framework."
- label: "ant-design"
image: "https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
description: "Projects related to Ant Design Framework."
- label: "bootstrap"
image: "https://getbootstrap.com/docs/5.0/assets/img/favicons/favicon-32x32.png"
description: "Projects related to Bootstrap UI Framework."
projects:
- name: React Admin
github_id: marmelab/react-admin
npm_id: react-admin
labels: ["material-ui"]
category: admin-dashboards
demo_url: https://marmelab.com/react-admin-demo/
- name: React Material Admin
github_id: flatlogic/react-material-admin
labels: ["material-ui"]
category: admin-dashboards
demo_url: https://flatlogic.com/templates/react-material-admin/demo
- name: React Dashboard
github_id: flatlogic/react-dashboard
labels: ["bootstrap"]
category: admin-dashboards
demo_url: https://flatlogic.com/templates/react-dashboard/demo
- name: Material Kit React
github_id: devias-io/material-kit-react
labels: ["material-ui"]
category: admin-dashboards
- name: Volt React Dashboard
github_id: themesberg/volt-react-dashboard
npm_id: "@themesberg/volt-react-dashboard"
labels: ["bootstrap"]
category: admin-dashboards
demo_url: https://demo.themesberg.com/volt-react-dashboard/
- name: Ant Design Pro
github_id: ant-design/ant-design-pro
npm_id: ant-design-pro
labels: ["ant-design"]
category: admin-dashboards
demo_url: https://preview.pro.ant.design/
- name: React SaaS Template
github_id: dunky11/react-saas-template
category: admin-dashboards
demo_url: https://reactsaastemplate.com/
- name: Notus React
github_id: creativetimofficial/notus-react
npm_id: notus-react
category: admin-dashboards
demo_url: https://demos.creative-tim.com/notus-react/
- name: coreui-free-bootstrap-admin-template
github_id: coreui/coreui-free-bootstrap-admin-template
npm_id: "@coreui/ajax"
category: admin-dashboards
- name: matx-react
github_id: uilibrary/matx-react
category: admin-dashboards
- name: React-Move
github_id: sghall/react-move
npm_id: react-move
category: animations
demo_url: https://react-move-docs.netlify.app/#/demos/node-group
- name: Gatsby
github_id: gatsbyjs/gatsby
npm_id: gatsby
category: cms-frameworks
demo_url: https://www.gatsbyjs.com/showcase/
- name: Next.js
github_id: vercel/next.js
npm_id: next
category: cms-frameworks
demo_url: https://nextjs.org/showcase
- name: umi
github_id: umijs/umi
npm_id: umi
category: cms-frameworks
- name: blitz
github_id: blitz-js/blitz
npm_id: blitz
category: cms-frameworks
- name: react-query
github_id: tannerlinsley/react-query
npm_id: react-query
category: data-fetching
- name: swr
github_id: vercel/swr
npm_id: swr
category: data-fetching
- name: relay
github_id: facebook/relay
npm_id: relay
category: data-fetching
- name: react-refetch
github_id: heroku/react-refetch
npm_id: react-refetch
category: data-fetching
- name: restful-react
github_id: contiamo/restful-react
npm_id: restful-react
category: data-fetching
- name: MUI-Datatables
github_id: gregnb/mui-datatables
npm_id: mui-datatables
labels: ["material-ui"]
category: data-tables
- name: material-table
github_id: mbrn/material-table
npm_id: material-table
labels: ["material-ui"]
category: data-tables
- name: RevoGrid
github_id: revolist/revogrid
npm_id: "@revolist/revogrid"
category: data-tables
- name: react-data-grid
github_id: adazzle/react-data-grid
npm_id: react-data-grid
category: data-tables
- name: React-Datasheet
github_id: nadbm/react-datasheet
npm_id: react-datasheet
category: data-tables
- name: ag-Grid
github_id: ag-grid/ag-grid
npm_id: ag-grid-community
category: data-tables
- name: React Data Table
github_id: jbetancur/react-data-table-component
npm_id: react-data-table-component
category: data-tables
demo_url: https://jbetancur.github.io/react-data-table-component/
- name: Handsontable
github_id: handsontable/handsontable
npm_id: handsontable
category: data-tables
demo_url: https://handsontable.com/examples
nuget_id: Handsontable
- name: reactdatagrid
github_id: inovua/reactdatagrid
npm_id: "@inovua/reactdatagrid-community"
category: data-tables
demo_url: https://reactdatagrid.io/demo
- name: React Spreadsheet
github_id: iddan/react-spreadsheet
npm_id: react-spreadsheet
category: data-tables
demo_url: https://iddan.github.io/react-spreadsheet
- name: ReactPivot
github_id: davidguttman/react-pivot
npm_id: react-pivot
category: data-tables
demo_url: http://davidguttman.github.io/react-pivot/
- name: react-pivottable
github_id: plotly/react-pivottable
npm_id: react-pivottable
category: data-tables
demo_url: https://react-pivottable.js.org/
- name: rsuite-table
github_id: rsuite/rsuite-table
npm_id: rsuite-table
category: data-tables
- name: react-virtualized
github_id: bvaughn/react-virtualized
npm_id: react-virtualized
category: data-tables
demo_url: https://bvaughn.github.io/react-virtualized/#/components/List
- name: Perspective
github_id: finos/perspective
npm_id: "@finos/perspective"
category: data-tables
demo_url: https://perspective.finos.org/
pypi_id: perspective-python
conda_id: conda-forge/perspective
- name: orb
github_id: nnajm/orb
npm_id: orb
category: data-tables
demo_url: https://nnajm.github.io/orb/
nuget_id: orb
- name: react-table
github_id: tannerlinsley/react-table
npm_id: react-table
category: data-tables
- name: glide-data-grid
github_id: glideapps/glide-data-grid
npm_id: "@glideapps/glide-data-grid"
category: data-tables
- name: Recharts
github_id: recharts/recharts
npm_id: recharts
category: data-viz
demo_url: http://recharts.org/en-US/examples
- name: Viser
github_id: viserjs/viser
npm_id: viser-react
category: data-viz
demo_url: https://viserjs.github.io/demoHome.html
- name: react-vis
github_id: uber/react-vis
npm_id: react-vis
category: data-viz
demo_url: http://uber.github.io/react-vis/examples/showcases/
- name: Victory
github_id: FormidableLabs/victory
npm_id: victory
category: data-viz
demo_url: https://formidable.com/open-source/victory/gallery/
- name: BizCharts
github_id: alibaba/BizCharts
npm_id: bizcharts
category: data-viz
- name: Reaviz
github_id: reaviz/reaviz
npm_id: reaviz
category: data-viz
- name: nivo
github_id: plouc/nivo
npm_id: "@nivo/core"
category: data-viz
demo_url: https://nivo.rocks/components/
- name: Semiotic
github_id: nteract/semiotic
npm_id: semiotic
category: data-viz
demo_url: https://semiotic.nteract.io/examples
- name: React ApexCharts
github_id: apexcharts/react-apexcharts
npm_id: react-apexcharts
category: data-viz
demo_url: https://apexcharts.com/react-chart-demos/
- name: React Chartjs 2
github_id: reactchartjs/react-chartjs-2
npm_id: react-chartjs-2
category: data-viz
demo_url: https://reactchartjs.github.io/react-chartjs-2/
- name: visx
github_id: airbnb/visx
npm_id: "@visx/group"
category: data-viz
demo_url: https://airbnb.io/visx/gallery
- name: react-diagrams
github_id: projectstorm/react-diagrams
npm_id: "@projectstorm/react-diagrams"
category: data-viz
- name: GGEditor
github_id: alibaba/GGEditor
npm_id: gg-editor
category: data-viz
- name: Drawflow
github_id: jerosoler/Drawflow
npm_id: drawflow
category: data-viz
- name: ant-design-charts
github_id: ant-design/ant-design-charts
npm_id: "@ant-design/charts"
labels: ["ant-design"]
category: data-viz
- name: elastic-charts
github_id: elastic/elastic-charts
npm_id: "@elastic/charts"
category: data-viz
- name: Tauri
github_id: tauri-apps/tauri
npm_id: tauri
category: desktop-apps
cargo_id: tauri-utils
- name: Electron
github_id: electron/electron
npm_id: electron
category: desktop-apps
- name: Bit
github_id: teambit/bit
npm_id: bit-bin
category: dev-tools
description: Build, distribute, and collaborate on components.
- name: Webpack
github_id: webpack/webpack
npm_id: webpack
category: dev-tools
- name: Reactotron
github_id: infinitered/reactotron
npm_id: reactotron
category: dev-tools
- name: docz
github_id: doczjs/docz
npm_id: docz
category: dev-tools
- name: Storybook
github_id: storybookjs/storybook
npm_id: "@storybook/react"
category: dev-tools
- name: Storybook Addon Material-UI
github_id: react-theming/storybook-addon-material-ui
npm_id: storybook-addon-material-ui
labels: ["material-ui"]
category: dev-tools
- name: Luna
github_id: rvpanoz/luna
category: dev-tools
- name: lerna
github_id: lerna/lerna
npm_id: lerna
category: dev-tools
- name: Material-UI Theme Creator
github_id: bareynol/mui-theme-creator
labels: ["material-ui"]
category: dev-tools
demo_url: https://bareynol.github.io/mui-theme-creator/
- name: esbuild
github_id: evanw/esbuild
npm_id: esbuild
category: dev-tools
go_id: github.com/evanw/esbuild
- name: why-did-you-render
github_id: welldone-software/why-did-you-render
npm_id: why-did-you-render
category: dev-tools
- name: ncc
github_id: vercel/ncc
npm_id: "@vercel/ncc"
category: dev-tools
brew_id: ncc
- name: Monaco React
github_id: suren-atoyan/monaco-react
npm_id: "@monaco-editor/react"
category: editors
demo_url: https://monaco-react.surenatoyan.com/
- name: Monaco Yaml
github_id: remcohaszing/monaco-yaml
npm_id: monaco-yaml
category: editors
- name: React Ace
github_id: securingsincity/react-ace
npm_id: react-ace
category: editors
demo_url: https://securingsincity.github.io/react-ace/
- name: Draft JS
github_id: facebook/draft-js
npm_id: draft-js
category: editors
- name: ReactPage
github_id: react-page/react-page
npm_id: "@react-page/editor"
category: editors
- name: React Email Editor
github_id: unlayer/react-email-editor
npm_id: react-email-editor
category: editors
demo_url: https://react-email-editor-demo.netlify.app/
- name: react-monaco-editor
github_id: react-monaco-editor/react-monaco-editor
npm_id: react-monaco-editor
category: editors
- name: react-mde
github_id: andrerpena/react-mde
npm_id: react-mde
category: editors
demo_url: http://andrerpena.me/react-mde/
- name: Slate
github_id: ianstormtaylor/slate
npm_id: slate
category: editors
demo_url: https://www.slatejs.org/examples/richtext
- name: tinymce
github_id: tinymce/tinymce
npm_id: tinymce
category: editors
- name: react-draft-wysiwyg
github_id: jpuri/react-draft-wysiwyg
npm_id: react-draft-wysiwyg
category: editors
- name: react-quill
github_id: zenoamaro/react-quill
npm_id: react-quill
category: editors
- name: react-rte
github_id: sstur/react-rte
npm_id: react-rte
category: editors
- name: react-digraph
github_id: uber/react-digraph
npm_id: react-digraph
category: editors
- name: codejar
github_id: antonmedv/codejar
npm_id: codejar
category: editors
- name: react-lz-editor
github_id: leejaen/react-lz-editor
npm_id: react-lz-editor
category: editors
- name: CodeFlask
github_id: kazzkiq/CodeFlask
npm_id: codeflask
category: editors
- name: react-simple-code-editor
github_id: satya164/react-simple-code-editor
npm_id: react-simple-code-editor
category: editors
- name: react-design-editor
github_id: salgum1114/react-design-editor
npm_id: react-design-editor
category: editors
- name: react-markdown-editor-lite
github_id: HarryChen0506/react-markdown-editor-lite
npm_id: react-markdown-editor-lite
category: editors
- name: editor.js
github_id: codex-team/editor.js
npm_id: "@editorjs/editorjs"
category: editors
- name: react-csv
github_id: react-csv/react-csv
npm_id: react-csv
category: file-handling
- name: SheetJS
github_id: SheetJS/sheetjs
npm_id: xlsx
category: file-handling
- name: React-Data-Export
github_id: securedeveloper/react-data-export
npm_id: react-data-export
category: file-handling
- name: react-json-view
github_id: mac-s-g/react-json-view
npm_id: react-json-view
category: file-handling
demo_url: https://mac-s-g.github.io/react-json-view/demo/dist/
- name: react-file-viewer
github_id: plangrid/react-file-viewer
npm_id: react-file-viewer
category: file-handling
- name: React FilePond
github_id: pqina/react-filepond
npm_id: react-filepond
category: file-handling
demo_url: https://codesandbox.io/s/react-filepond-live-demo-iw9ri
- name: React Dropzone
github_id: react-dropzone/react-dropzone
npm_id: react-dropzone
category: file-handling
demo_url: https://react-dropzone.js.org/#section-basic-example
- name: material-ui-dropzone
github_id: Yuvaleros/material-ui-dropzone
npm_id: material-ui-dropzone
labels: ["material-ui"]
category: file-handling
demo_url: https://yuvaleros.github.io/material-ui-dropzone/
- name: uppy
github_id: transloadit/uppy
npm_id: uppy
category: file-handling
- name: react-uploady
github_id: rpldy/react-uploady
npm_id: "@rpldy/uploady"
category: file-handling
demo_url: https://react-uploady.org
- name: atomic-layout
github_id: kettanaito/atomic-layout
npm_id: atomic-layout
category: layout
- name: Notistack
github_id: iamhosseindhv/notistack
npm_id: notistack
labels: ["material-ui"]
category: notifications
demo_url: https://iamhosseindhv.com/notistack/demos
- name: React Hot Toast
github_id: timolins/react-hot-toast
npm_id: react-hot-toast
category: notifications
demo_url: https://react-hot-toast.com/
- name: React-Toastify
github_id: fkhadra/react-toastify
npm_id: react-toastify
category: notifications
demo_url: https://fkhadra.github.io/react-toastify/introduction/
- name: Material-UI Treasury
github_id: siriwatknp/mui-treasury
npm_id: "@mui-treasury/components"
labels: ["material-ui"]
category: other-components
demo_url: https://mui-treasury.com/components/
- name: React Lazylog
github_id: mozilla-frontend-infra/react-lazylog
npm_id: react-lazylog
category: other-components
demo_url: https://mozilla-frontend-infra.github.io/react-lazylog/#lazylog
- name: React Flow
github_id: wbkd/react-flow
npm_id: react-flow-renderer
category: other-components
demo_url: https://reactflow.dev/examples/
- name: React Flow Chart
github_id: MrBlenny/react-flow-chart
npm_id: "@mrblenny/react-flow-chart"
category: other-components
demo_url: https://mrblenny.github.io/react-flow-chart/index.html?path=/story/state--internal-react-state
- name: React Ansi
github_id: RaoHai/react-ansi
npm_id: react-ansi
category: other-components
- name: material-ui-chip-input
github_id: TeamWertarbyte/material-ui-chip-input
npm_id: material-ui-chip-input
labels: ["material-ui"]
category: other-components
demo_url: https://mui.wertarbyte.com/#material-ui-chip-input
- name: react-sortable-tree
github_id: frontend-collective/react-sortable-tree
npm_id: react-sortable-tree
category: dnd
demo_url: https://frontend-collective.github.io/react-sortable-tree/?path=/story/basics--minimal-implementation
- name: Reactive Search
github_id: appbaseio/reactivesearch
npm_id: "@appbaseio/reactivesearch"
category: other-components
demo_url: https://opensource.appbase.io/reactivesearch/#examples
- name: react-beautiful-dnd
github_id: atlassian/react-beautiful-dnd
npm_id: react-beautiful-dnd
category: dnd
- name: sweetalert2
github_id: sweetalert2/sweetalert2
npm_id: sweetalert2
category: other-components
nuget_id: JSoftCR_SweetAlert
- name: react-slick
github_id: akiran/react-slick
npm_id: react-slick
category: other-components
- name: muuri
github_id: haltu/muuri
npm_id: muuri
category: dnd
- name: searchkit
github_id: searchkit/searchkit
npm_id: searchkit
category: other-components
- name: dnd-kit
github_id: clauderic/dnd-kit
npm_id: "@dnd-kit/core"
category: dnd
- name: react-avatar-editor
github_id: mosch/react-avatar-editor
npm_id: react-avatar-editor
category: other-components
- name: react-copy-to-clipboard
github_id: nkbt/react-copy-to-clipboard
npm_id: react-copy-to-clipboard
category: other-components
- name: fullcalendar-react
github_id: fullcalendar/fullcalendar-react
npm_id: "@fullcalendar/react"
category: other-components
- name: react-nice-avatar
github_id: dapilab/react-nice-avatar
npm_id: react-nice-avatar
category: other-components
- name: preact
github_id: preactjs/preact
npm_id: preact
category: others
- name: react-use
github_id: streamich/react-use
npm_id: react-use
category: others
- name: react-hook-form
github_id: react-hook-form/react-hook-form
npm_id: react-hook-form
category: input-components
- name: sql.js
github_id: sql-js/sql.js
npm_id: sql.js
category: others
- name: mozaik
github_id: plouc/mozaik
npm_id: mozaik
category: others
- name: datav
github_id: sunface/datav
category: others
- name: iconify
github_id: iconify/iconify
npm_id: iconify
category: others
- name: Unstated Next
github_id: jamiebuilds/unstated-next
npm_id: unstated-next
category: state-management
- name: localForage
github_id: localForage/localForage
npm_id: localforage
category: state-management
nuget_id: localForage
- name: zustand
github_id: pmndrs/zustand
npm_id: zustand
category: state-management
- name: redux-toolkit
github_id: reduxjs/redux-toolkit
npm_id: redux-toolkit
category: state-management
- name: Styled Components
github_id: styled-components/styled-components
npm_id: styled-components
category: styling
- name: Tailwind CSS
github_id: tailwindlabs/tailwindcss
npm_id: tailwindcss
category: styling
- name: emotion
github_id: emotion-js/emotion
npm_id: "@emotion/react"
category: styling
- name: twin.macro
github_id: ben-rogerson/twin.macro
npm_id: twin.macro
category: styling
- name: styletron
github_id: styletron/styletron
npm_id: styletron
category: styling
- name: jest
github_id: facebook/jest
npm_id: jest
category: testing
- name: cypress
github_id: cypress-io/cypress
npm_id: cypress
category: testing
- name: enzyme
github_id: enzymejs/enzyme
npm_id: enzyme
category: testing
- name: react-testing-library
github_id: testing-library/react-testing-library
npm_id: react-testing-library
category: testing
- name: Material-UI
github_id: mui-org/material-ui
npm_id: "@material-ui/core"
labels: ["material-ui"]
category: ui-frameworks
- name: Ant Design
github_id: ant-design/ant-design
npm_id: antd
labels: ["ant-design"]
category: ui-frameworks
- name: React Suite
github_id: rsuite/rsuite
npm_id: rsuite
category: ui-frameworks
demo_url: https://rsuitejs.com/components/overview/
- name: Bootstrap React
github_id: react-bootstrap/react-bootstrap
npm_id: react-bootstrap
labels: ["bootstrap"]
category: ui-frameworks
- name: Radix Primitives
github_id: radix-ui/primitives
npm_id: "@radix-ui/utils"
category: ui-frameworks
- name: Evergreen
github_id: segmentio/evergreen
npm_id: evergreen-ui
category: ui-frameworks
- name: Blueprint
github_id: palantir/blueprint
npm_id: "@blueprintjs/core"
category: ui-frameworks
demo_url: https://blueprintjs.com/docs/
- name: Semantic UI React
github_id: Semantic-Org/Semantic-UI-React
npm_id: semantic-ui-react
category: ui-frameworks
demo_url: https://react.semantic-ui.com/elements/button/
- name: Grommet
github_id: grommet/grommet
npm_id: grommet
category: ui-frameworks
demo_url: https://v2.grommet.io/components
- name: Rebass
github_id: rebassjs/rebass
npm_id: rebass
category: ui-frameworks
demo_url: https://codesandbox.io/s/github/rebassjs/rebass/tree/master/examples/sandbox
- name: Semantic-UI
github_id: Semantic-Org/Semantic-UI
npm_id: semantic-ui
category: ui-frameworks
- name: bulma
github_id: jgthms/bulma
npm_id: bulma
category: ui-frameworks
- name: tabler
github_id: tabler/tabler
npm_id: tabler
labels: ["bootstrap"]
category: ui-frameworks
- name: chakra-ui
github_id: chakra-ui/chakra-ui
npm_id: chakra-ui
category: ui-frameworks
- name: fluentui
github_id: microsoft/fluentui
npm_id: "@fluentui/react"
category: ui-frameworks
license: MIT
- name: headlessui
github_id: tailwindlabs/headlessui
npm_id: headlessui
category: ui-frameworks
- name: baseweb
github_id: uber/baseweb
npm_id: baseui
category: ui-frameworks
- name: carbon
github_id: carbon-design-system/carbon
npm_id: carbon-components-react
category: ui-frameworks
- name: polaris-react
github_id: Shopify/polaris-react
npm_id: "@shopify/polaris"
category: ui-frameworks
license: MIT
- name: theme-ui
github_id: system-ui/theme-ui
npm_id: theme-ui
category: ui-frameworks
- name: eui
github_id: elastic/eui
npm_id: "@elastic/eui"
category: ui-frameworks
- name: primereact
github_id: primefaces/primereact
npm_id: primereact
category: ui-frameworks
- name: tabler-react
github_id: tabler/tabler-react
npm_id: tabler-react
category: ui-frameworks
- name: components
github_id: primer/react
npm_id: "@primer/components"
category: ui-frameworks
- name: atomize
github_id: proksh/atomize
npm_id: atomize
category: ui-frameworks
- name: shards-react
github_id: designrevision/shards-react
npm_id: shards-react
category: ui-frameworks
- name: Supabase UI
github_id: supabase/ui
npm_id: "@supabase/ui"
category: ui-frameworks
- name: dashboard-ui-kit
github_id: march08/dashboard-ui-kit
npm_id: "@duik/it"
category: ui-frameworks
- name: axios
github_id: axios/axios
npm_id: axios
category: utils
nuget_id: axios.js
- name: lodash
github_id: lodash/lodash
npm_id: lodash
category: utils
- name: winston
github_id: winstonjs/winston
npm_id: winston
category: utils
- name: i18next
github_id: i18next/i18next
npm_id: i18next
category: utils
- name: log4js-node
github_id: log4js-node/log4js-node
npm_id: log4js
category: utils
- name: loglevel
github_id: pimterry/loglevel
npm_id: loglevel
category: utils
- name: Remotion
github_id: remotion-dev/remotion
npm_id: "@remotion/renderer"
- name: plain-free-bootstrap-admin-template
github_id: PlainAdmin/plain-free-bootstrap-admin-template
category: admin-dashboards
- name: cube.js
github_id: cube-js/cube.js
category: cms-frameworks
npm_id: "@cubejs-backend/api-gateway"
- name: redwood
github_id: redwoodjs/redwood
category: cms-frameworks
npm_id: "@redwoodjs/core"
- name: unstorage
github_id: unjs/unstorage
category: data-fetching
npm_id: unstorage
- name: mleibman/SlickGrid
github_id: mleibman/SlickGrid
category: data-tables
npm_id: slickgrid
- name: jsgrid
github_id: tabalinas/jsgrid
category: data-tables
npm_id: jsgrid
- name: material-ui-x
github_id: mui-org/material-ui-x
category: data-tables
labels: ["material-ui"]
npm_id: "@material-ui/data-grid"
- name: react-bootstrap-table2
github_id: react-bootstrap-table/react-bootstrap-table2
category: data-tables
labels: ["bootstrap"]
npm_id: react-bootstrap-table2-paginator
- name: jtable
github_id: volosoft/jtable
category: data-tables
npm_id: jtable
- name: fixed-data-table-2
github_id: schrodinger/fixed-data-table-2
category: data-tables
npm_id: fixed-data-table-2
- name: jspreadsheet
github_id: jspreadsheet/ce
category: data-tables
npm_id: jexcel
- name: tabulator
github_id: olifolkerd/tabulator
category: data-tables
npm_id: tabulator-tables
- name: SlickGrid
github_id: 6pac/SlickGrid
category: data-tables
npm_id: slickgrid
- name: gridjs
github_id: grid-js/gridjs
category: data-tables
npm_id: gridjs
- name: jqGrid
github_id: tonytomov/jqGrid
category: data-tables
- name: react-base-table
github_id: Autodesk/react-base-table
category: data-tables
npm_id: react-base-table
- name: datatable
github_id: frappe/datatable
category: data-tables
npm_id: frappe-datatable
- name: grid
github_id: paramquery/grid
category: data-tables
- name: ka-table
github_id: komarovalexander/ka-table
category: data-tables
npm_id: ka-table
- name: react-smart-data-table
github_id: joaocarmo/react-smart-data-table
category: data-tables
npm_id: react-smart-data-table
- name: FancyGrid
github_id: FancyGrid/FancyGrid
category: data-tables
npm_id: fancygrid
- name: editablegrid
github_id: webismymind/editablegrid
category: data-tables
- name: flat-ui
github_id: githubocto/flat-ui
category: data-tables
npm_id: "@githubocto/flat-ui"
- name: editable-react-table
github_id: archit-p/editable-react-table
category: data-tables
- name: Chart.js
github_id: chartjs/Chart.js
category: data-viz
npm_id: chart.js
- name: d3
github_id: d3/d3
category: data-viz
npm_id: d3
- name: echarts
github_id: apache/echarts
category: data-viz
npm_id: "@mempool/echarts"
- name: three.js
github_id: mrdoob/three.js
category: data-viz
npm_id: three
- name: mermaid
github_id: mermaid-js/mermaid
category: data-viz
npm_id: mermaid
- name: apexcharts.js
github_id: apexcharts/apexcharts.js
category: data-viz
npm_id: apexcharts
- name: charts
github_id: frappe/charts
category: data-viz
npm_id: frappe-charts
- name: cal-heatmap
github_id: wa0x6e/cal-heatmap
category: data-viz
npm_id: cal-heatmap
- name: carbon-charts
github_id: carbon-design-system/carbon-charts
category: data-viz
npm_id: "@carbon/charts"
- name: parcel
github_id: parcel-bundler/parcel
category: dev-tools
npm_id: parcel
conda_id: conda-forge/parceljs
- name: vite
github_id: vitejs/vite
category: dev-tools
npm_id: vite
- name: yarn
github_id: yarnpkg/berry
category: dev-tools
npm_id: "@yarnpkg/pnpify"
- name: jodit