-
Notifications
You must be signed in to change notification settings - Fork 90
/
libraries.json
2229 lines (2227 loc) · 133 KB
/
libraries.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
{
"C": {
"mongoose": {
"imports": ["mongoose.h"],
"technologies": ["Databases", "MongoDB"],
"description": "MongoDB object modeling designed to work in an asynchronous environment."
}
},
"C#": {
"ASP.NET": {
"imports": ["Microsoft.AspNetCore.Mvc"],
"technologies": ["Web Development", "SPA", "Server side rendering"],
"description": "ASP.NET Core is an open-source and cross-platform framework for building modern cloud based internet connected applications, such as web apps, IoT apps and mobile backends."
},
"Blazor": {
"imports": ["Microsoft.AspNetCore.Components"],
"technologies": ["Frontend", "WebAssembly"],
"description": "Blazor is a framework for building interactive client-side web UI with .NET",
"image": "https://devblogs.microsoft.com/aspnet/wp-content/uploads/sites/16/2019/04/BrandBlazor_nohalo_1000x.png"
},
"Entity Framework": {
"imports": ["System.Data.Entity", "System.ComponentModel"],
"technologies": ["ORM"],
"description": "Entity Framework is Microsoft's recommended data access technology for new applications."
},
"Entity Framework Core": {
"imports": ["Microsoft.EntityFrameworkCore"],
"technologies": ["ORM"],
"description": "Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations."
},
"NUnit": {
"imports": ["NUnit.Framework"],
"technologies": ["Testing"],
"description": "NUnit is a unit-testing framework for all .Net languages.",
"image": "https://nunit.org/img/nunit_logo_128.png"
},
"Unity3D": {
"imports": ["UnityEngine"],
"technologies": ["Game Development"],
"description": "Unity is a real-time 3D development platform for creating games and other 3D graphics."
},
"Wpf": {
"imports": ["System.Windows"],
"technologies": ["Desktop applications"],
"description": "Windows Presentation Foundation (WPF) is a UI framework for building Windows desktop applications. WPF supports a broad set of application development features, including an application model, resources, controls, graphics, layout, data binding and documents."
},
"XUnit.NET": {
"imports": ["XUnit"],
"technologies": ["Testing"],
"description": "xUnit.net is a free, open source, community-focused unit testing tool for the .NET Framework.",
"image": "https://avatars2.githubusercontent.com/u/2092016?s=200&v=4"
}
},
"C++": {
"Boost": {
"imports": ["boost/"],
"technologies": ["C++ Libraries"],
"description": "Boost provides free peer-reviewed portable C++ source libraries."
},
"DCMTK": {
"imports":["dcmtk/"],
"technologies":["C++ Libraries", "Medical Imaging" ],
"description":"DCMTK is a collection of libraries and applications implementing large parts the DICOM standard."
},
"FLTK":{
"imports": ["FL/"],
"technologies":["C++ Libraries", "Desktop Applications", "User Interfaces"],
"description": "The Fast Light Tool Kit is a cross-platform C++ GUI toolkit for UNIX®/Linux® (X11 or Wayland), Microsoft® Windows®, and macOS®."
},
"json-cpp": {
"imports": ["json-cpp"],
"technologies": ["C++ Libraries", "JSON"],
"description": "json-cpp is a C++11 JSON serialization library."
},
"OpenCV": {
"imports": ["opencv2/"],
"technologies": ["C++ Libraries", "Image Processing", "Computer Vision"],
"description": "OpenCV (Open Source Computer Vision Library: http://opencv.org) is an open-source library that includes several hundreds of computer vision algorithms."
},
"Qt": {
"imports": ["Any", "AssignmentInfo", "Binding", "DnsMode", "Element", "ElementPass", "EvaluatorInfo", "FixSuggestion", "ForeachInfo", "GenericPass", "InvokeInfo", "LintPlugin", "LoggerWarningId", "Method", "ParameterInfo", "PassManager", "Property", "PropertyPass", "Q3DBars", "Q3DCamera", "Q3DInputHandler", "Q3DLight", "Q3DObject", "Q3DScatter", "Q3DScene", "Q3DSurface", "Q3DTheme", "QAbstract3DAxis", "QAbstract3DGraph", "QAbstract3DInputHandler", "QAbstract3DSeries", "QAbstractActionInput", "QAbstractAnimation", "QAbstractAnimationClip", "QAbstractAspect", "QAbstractAxis", "QAbstractAxisInput", "QAbstractBarSeries", "QAbstractButton", "QAbstractCameraController", "QAbstractClipAnimator", "QAbstractClipBlendNode", "QAbstractDataProxy", "QAbstractEventDispatcher", "QAbstractExtensionFactory", "QAbstractExtensionManager", "QAbstractFileIconProvider", "QAbstractFormBuilder", "QAbstractFunctor", "QAbstractGraphicsShapeItem", "QAbstractGrpcChannel", "QAbstractGrpcClient", "QAbstractHttpServer", "QAbstractItemDelegate", "QAbstractItemModel", "QAbstractItemModelReplica", "QAbstractItemModelTester", "QAbstractItemView", "QAbstractLight", "QAbstractListModel", "QAbstractNativeEventFilter", "QAbstractNetworkCache", "QAbstractOAuth", "QAbstractOAuth2", "QAbstractOAuthReplyHandler", "QAbstractOpenGLFunctions", "QAbstractPhysicalDevice", "QAbstractPhysicalDeviceProxy", "QAbstractPrintDialog", "QAbstractProtobufSerializer", "QAbstractProxyModel", "QAbstractRayCaster", "QAbstractScrollArea", "QAbstractSeries", "QAbstractSkeleton", "QAbstractSlider", "QAbstractSocket", "QAbstractSpinBox", "QAbstractState", "QAbstractTableModel", "QAbstractTextDocumentLayout", "QAbstractTexture", "QAbstractTextureImage", "QAbstractTransition", "QAccelerometer", "QAccelerometerFilter", "QAccelerometerReading", "QAccessible", "QAccessibleActionInterface", "QAccessibleEditableTextInterface", "QAccessibleEvent", "QAccessibleInterface", "QAccessibleObject", "QAccessiblePlugin", "QAccessibleSelectionInterface", "QAccessibleStateChangeEvent", "QAccessibleTableCellInterface", "QAccessibleTableInterface", "QAccessibleTableModelChangeEvent", "QAccessibleTextCursorEvent", "QAccessibleTextInsertEvent", "QAccessibleTextInterface", "QAccessibleTextRemoveEvent", "QAccessibleTextSelectionEvent", "QAccessibleTextUpdateEvent", "QAccessibleValueChangeEvent", "QAccessibleValueInterface", "QAccessibleWidget", "QAction", "QActionEvent", "QActionGroup", "QActionInput", "QAdditiveClipBlend", "QAdoptSharedDataTag", "QAlphaCoverage", "QAlphaTest", "QAmbientLightFilter", "QAmbientLightReading", "QAmbientLightSensor", "QAmbientSound", "QAmbientTemperatureFilter", "QAmbientTemperatureReading", "QAmbientTemperatureSensor", "QAnalogAxisInput", "QAndroidActivityResultReceiver", "QAndroidApplication", "QAndroidBinder", "QAndroidIntent", "QAndroidOffscreenSurface", "QAndroidParcel", "QAndroidService", "QAndroidServiceConnection", "QAnimationAspect", "QAnimationCallback", "QAnimationClip", "QAnimationClipData", "QAnimationClipLoader", "QAnimationController", "QAnimationGroup", "QAnyStringView", "QApplication", "QAreaLegendMarker", "QAreaSeries", "QArmature", "QAspectEngine", "QAspectJob", "QAssociativeIterable", "QAtomicInt", "QAtomicInteger", "QAtomicPointer", "QAttribute", "QAudioBuffer", "QAudioDecoder", "QAudioDevice", "QAudioEngine", "QAudioFormat", "QAudioInput", "QAudioListener", "QAudioOutput", "QAudioRoom", "QAudioSink", "QAudioSource", "QAuthenticator", "QAxAggregated", "QAxBase", "QAxBaseObject", "QAxBaseWidget", "QAxBindable", "QAxFactory", "QAxObject", "QAxObjectInterface", "QAxScript", "QAxScriptEngine", "QAxScriptManager", "QAxSelect", "QAxWidget", "QAxis", "QAxisAccumulator", "QAxisSetting", "QBEInteger", "QBackendNode", "QBackendNodeMapper", "QBackingStore", "QBar3DSeries", "QBarCategoryAxis", "QBarDataItem", "QBarDataProxy", "QBarLegendMarker", "QBarSeries", "QBarSet", "QBaseIterator", "QBasicTimer", "QBindable", "QBitArray", "QBitmap", "QBlendEquation", "QBlendEquationArguments", "QBlendedClipAnimator", "QBlitFramebuffer", "QBluetoothAddress", "QBluetoothDeviceDiscoveryAgent", "QBluetoothDeviceInfo", "QBluetoothHostInfo", "QBluetoothLocalDevice", "QBluetoothPermission", "QBluetoothServer", "QBluetoothServiceDiscoveryAgent", "QBluetoothServiceInfo", "QBluetoothSocket", "QBluetoothUuid", "QBoundingVolume", "QBoxLayout", "QBoxPlotLegendMarker", "QBoxPlotSeries", "QBoxSet", "QBrush", "QBuffer", "QBufferCapture", "QButtonAxisInput", "QButtonGroup", "QByteArray", "QByteArrayList", "QByteArrayMatcher", "QByteArrayView", "QCache", "QCalendar", "QCalendarPermission", "QCalendarWidget", "QCallbackMapping", "QCamera", "QCameraDevice", "QCameraFormat", "QCameraLens", "QCameraPermission", "QCameraSelector", "QCanBus", "QCanBusDevice", "QCanBusDeviceInfo", "QCanBusFactory", "QCanBusFrame", "QCanDbcFileParser", "QCanFrameProcessor", "QCanMessageDescription", "QCanSignalDescription", "QCanUniqueIdDescription", "QCandlestickLegendMarker", "QCandlestickModelMapper", "QCandlestickSeries", "QCandlestickSet", "QCapturableWindow", "QCategory3DAxis", "QCategoryAxis", "QCborArray", "QCborError", "QCborMap", "QCborParserError", "QCborStreamReader", "QCborStreamWriter", "QCborValue", "QChannel", "QChannelMapper", "QChannelMapping", "QChar", "QChart", "QChartView", "QCheckBox", "QChildEvent", "QClearBuffers", "QClipAnimator", "QClipBlendValue", "QClipPlane", "QClipboard", "QCloseEvent", "QCoapClient", "QCoapMessage", "QCoapOption", "QCoapPrivateKey", "QCoapReply", "QCoapRequest", "QCoapResource", "QCoapResourceDiscoveryReply", "QCoapSecurityConfiguration", "QCocoaGLContext", "QCollator", "QCollatorSortKey", "QColor", "QColorAxis", "QColorDialog", "QColorMask", "QColorSpace", "QColorTransform", "QColormap", "QColumnView", "QComboBox", "QCommandLineOption", "QCommandLineParser", "QCommandLinkButton", "QCommonStyle", "QCompass", "QCompassFilter", "QCompassReading", "QCompleter", "QComponent", "QCompressedHelpInfo", "QComputeCommand", "QConcatenateTablesProxyModel", "QConeGeometry", "QConeGeometryView", "QConeMesh", "QConicalGradient", "QConstIterator", "QContactsPermission", "QContextMenuEvent", "QContiguousCache", "QCoreApplication", "QCoreSettings", "QCryptographicHash", "QCuboidGeometry", "QCuboidGeometryView", "QCuboidMesh", "QCullFace", "QCursor", "QCustom3DItem", "QCustom3DLabel", "QCustom3DVolume", "QCylinderGeometry", "QCylinderGeometryView", "QCylinderMesh", "QDBusAbstractAdaptor", "QDBusAbstractInterface", "QDBusArgument", "QDBusConnection", "QDBusConnectionInterface", "QDBusContext", "QDBusError", "QDBusInterface", "QDBusMessage", "QDBusObjectPath", "QDBusPendingCall", "QDBusPendingCallWatcher", "QDBusPendingReply", "QDBusReply", "QDBusServer", "QDBusServiceWatcher", "QDBusSignature", "QDBusUnixFileDescriptor", "QDBusVariant", "QDBusVirtualObject", "QDataStream", "QDataWidgetMapper", "QDate", "QDateEdit", "QDateTime", "QDateTimeAxis", "QDateTimeEdit", "QDeadlineTimer", "QDebug", "QDebugOverlay", "QDebugStateSaver", "QDepthRange", "QDepthTest", "QDesignerActionEditorInterface", "QDesignerContainerExtension", "QDesignerCustomWidgetCollectionInterface", "QDesignerCustomWidgetInterface", "QDesignerDynamicPropertySheetExtension", "QDesignerFormEditorInterface", "QDesignerFormWindowCursorInterface", "QDesignerFormWindowInterface", "QDesignerFormWindowManagerInterface", "QDesignerMemberSheetExtension", "QDesignerObjectInspectorInterface", "QDesignerPropertyEditorInterface", "QDesignerPropertySheetExtension", "QDesignerTaskMenuExtension", "QDesignerWidgetBoxInterface", "QDesktopServices", "QDial", "QDialog", "QDialogButtonBox", "QDiffuseMapMaterial", "QDiffuseSpecularMapMaterial", "QDiffuseSpecularMaterial", "QDir", "QDirIterator", "QDirectionalLight", "QDispatchCompute", "QDithering", "QDnsDomainNameRecord", "QDnsHostAddressRecord", "QDnsLookup", "QDnsMailExchangeRecord", "QDnsServiceRecord", "QDnsTextRecord", "QDockWidget", "QDomAttr", "QDomCDATASection", "QDomCharacterData", "QDomComment", "QDomDocument", "QDomDocumentFragment", "QDomDocumentType", "QDomElement", "QDomEntity", "QDomEntityReference", "QDomImplementation", "QDomNamedNodeMap", "QDomNode", "QDomNodeList", "QDomNotation", "QDomProcessingInstruction", "QDomText", "QDoubleSpinBox", "QDoubleValidator", "QDrag", "QDragEnterEvent", "QDragLeaveEvent", "QDragMoveEvent", "QDropEvent", "QDtls", "QDtlsClientVerifier", "QDynamicPropertyChangeEvent", "QEGLContext", "QEasingCurve", "QEffect", "QElapsedTimer", "QEnableSharedFromThis", "QEnterEvent", "QEntity", "QEnvironmentLight", "QErrorMessage", "QEvent", "QEventLoop", "QEventLoopLocker", "QEventPoint", "QEventTransition", "QException", "QExplicitlySharedDataPointer", "QExposeEvent", "QExtensionFactory", "QExtensionManager", "QExtrudedTextGeometry", "QExtrudedTextMesh", "QFile", "QFileDevice", "QFileDialog", "QFileIconProvider", "QFileInfo", "QFileOpenEvent", "QFileSelector", "QFileSystemModel", "QFileSystemWatcher", "QFilterKey", "QFinalState", "QFirstPersonCameraController", "QFlag", "QFlags", "QFocusEvent", "QFocusFrame", "QFont", "QFontComboBox", "QFontDatabase", "QFontDialog", "QFontInfo", "QFontMetrics", "QFontMetricsF", "QFormBuilder", "QFormLayout", "QForwardRenderer", "QFrame", "QFrameAction", "QFrameGraphNode", "QFrontFace", "QFrustumCulling", "QFuture", "QFutureIterator", "QFutureSynchronizer", "QFutureWatcher", "QGLXContext", "QGenericArgument", "QGenericMatrix", "QGenericPlugin", "QGenericPluginFactory", "QGenericReturnArgument", "QGeoAddress", "QGeoAreaMonitorInfo", "QGeoAreaMonitorSource", "QGeoCircle", "QGeoCodeReply", "QGeoCodingManager", "QGeoCodingManagerEngine", "QGeoCoordinate", "QGeoLocation", "QGeoManeuver", "QGeoPath", "QGeoPolygon", "QGeoPositionInfo", "QGeoPositionInfoSource", "QGeoPositionInfoSourceFactory", "QGeoRectangle", "QGeoRoute", "QGeoRouteReply", "QGeoRouteRequest", "QGeoRouteSegment", "QGeoRoutingManager", "QGeoRoutingManagerEngine", "QGeoSatelliteInfo", "QGeoSatelliteInfoSource", "QGeoServiceProvider", "QGeoServiceProviderFactory", "QGeoShape", "QGeometry", "QGeometryRenderer", "QGeometryView", "QGesture", "QGestureEvent", "QGestureRecognizer", "QGlobalStatic", "QGlyphRun", "QGoochMaterial", "QGradient", "QGraphicsAnchor", "QGraphicsAnchorLayout", "QGraphicsApiFilter", "QGraphicsBlurEffect", "QGraphicsColorizeEffect", "QGraphicsDropShadowEffect", "QGraphicsEffect", "QGraphicsEllipseItem", "QGraphicsGridLayout", "QGraphicsItem", "QGraphicsItemAnimation", "QGraphicsItemGroup", "QGraphicsLayout", "QGraphicsLayoutItem", "QGraphicsLineItem", "QGraphicsLinearLayout", "QGraphicsObject", "QGraphicsOpacityEffect", "QGraphicsPathItem", "QGraphicsPixmapItem", "QGraphicsPolygonItem", "QGraphicsProxyWidget", "QGraphicsRectItem", "QGraphicsRotation", "QGraphicsScale", "QGraphicsScene", "QGraphicsSceneContextMenuEvent", "QGraphicsSceneDragDropEvent", "QGraphicsSceneEvent", "QGraphicsSceneHelpEvent", "QGraphicsSceneHoverEvent", "QGraphicsSceneMouseEvent", "QGraphicsSceneMoveEvent", "QGraphicsSceneResizeEvent", "QGraphicsSceneWheelEvent", "QGraphicsSimpleTextItem", "QGraphicsSvgItem", "QGraphicsTextItem", "QGraphicsTransform", "QGraphicsVideoItem", "QGraphicsView", "QGraphicsWidget", "QGregorianCalendar", "QGridLayout", "QGroupBox", "QGrpcCallOptions", "QGrpcCallReply", "QGrpcChannel", "QGrpcChannelOptions", "QGrpcHttp2Channel", "QGrpcOperation", "QGrpcStatus", "QGrpcStream", "QGuiApplication", "QGyroscope", "QGyroscopeFilter", "QGyroscopeReading", "QHBarModelMapper", "QHBoxLayout", "QHBoxPlotModelMapper", "QHCandlestickModelMapper", "QHPieModelMapper", "QHXYModelMapper", "QHash", "QHashIterator", "QHashSeed", "QHeaderView", "QHeightMapSurfaceDataProxy", "QHelpContentItem", "QHelpContentModel", "QHelpContentWidget", "QHelpEngine", "QHelpEngineCore", "QHelpEvent", "QHelpFilterData", "QHelpFilterEngine", "QHelpFilterSettingsWidget", "QHelpIndexModel", "QHelpIndexWidget", "QHelpLink", "QHelpSearchEngine", "QHelpSearchQuery", "QHelpSearchQueryWidget", "QHelpSearchResult", "QHelpSearchResultWidget", "QHideEvent", "QHistoryState", "QHorizontalBarSeries", "QHorizontalPercentBarSeries", "QHorizontalStackedBarSeries", "QHostAddress", "QHostInfo", "QHoverEvent", "QHstsPolicy", "QHttp1Configuration", "QHttp2Configuration", "QHttpMultiPart", "QHttpPart", "QHttpServer", "QHttpServerRequest", "QHttpServerResponder", "QHttpServerResponse", "QHttpServerRouter", "QHttpServerRouterRule", "QHumidityFilter", "QHumidityReading", "QHumiditySensor", "QIODevice", "QIODeviceBase", "QIcon", "QIconDragEvent", "QIconEngine", "QIconEnginePlugin", "QIdentityProxyModel", "QImage", "QImageCapture", "QImageIOHandler", "QImageIOPlugin", "QImageReader", "QImageWriter", "QInputAspect", "QInputChord", "QInputDevice", "QInputDeviceIntegration", "QInputDialog", "QInputEvent", "QInputMethod", "QInputMethodEvent", "QInputMethodQueryEvent", "QInputSequence", "QInputSettings", "QIntValidator", "QItemDelegate", "QItemEditorCreator", "QItemEditorCreatorBase", "QItemEditorFactory", "QItemModelBarDataProxy", "QItemModelScatterDataProxy", "QItemModelSurfaceDataProxy", "QItemSelection", "QItemSelectionModel", "QItemSelectionRange", "QIterable", "QIterator", "QJSEngine", "QJSManagedValue", "QJSPrimitiveNull", "QJSPrimitiveUndefined", "QJSPrimitiveValue", "QJSValue", "QJSValueIterator", "QJalaliCalendar", "QJniEnvironment", "QJniObject", "QJoint", "QJsonArray", "QJsonDocument", "QJsonObject", "QJsonParseError", "QJsonValue", "QJulianCalendar", "QKeyCombination", "QKeyEvent", "QKeyEventTransition", "QKeyFrame", "QKeySequence", "QKeySequenceEdit", "QKeyValueIterator", "QKeyboardDevice", "QKeyboardHandler", "QKeyframeAnimation", "QLCDNumber", "QLEInteger", "QLabel", "QLatin1Char", "QLatin1String", "QLatin1StringMatcher", "QLatin1StringView", "QLayer", "QLayerFilter", "QLayout", "QLayoutItem", "QLegend", "QLegendMarker", "QLerpClipBlend", "QLevelOfDetail", "QLevelOfDetailBoundingSphere", "QLevelOfDetailSwitch", "QLibrary", "QLibraryInfo", "QLightFilter", "QLightReading", "QLightSensor", "QLine", "QLineEdit", "QLineF", "QLineSeries", "QLineWidth", "QLinearGradient", "QLinkedList", "QLinkedListIterator", "QList", "QListIterator", "QListView", "QListWidget", "QListWidgetItem", "QLocalServer", "QLocalSocket", "QLocale", "QLocationPermission", "QLockFile", "QLogValue3DAxisFormatter", "QLogValueAxis", "QLoggingCategory", "QLogicAspect", "QLogicalDevice", "QLowEnergyAdvertisingData", "QLowEnergyAdvertisingParameters", "QLowEnergyCharacteristic", "QLowEnergyCharacteristicData", "QLowEnergyConnectionParameters", "QLowEnergyController", "QLowEnergyDescriptor", "QLowEnergyDescriptorData", "QLowEnergyService", "QLowEnergyServiceData", "QMagnetometer", "QMagnetometerFilter", "QMagnetometerReading", "QMainWindow", "QMap", "QMapIterator", "QMargins", "QMarginsF", "QMaskGenerator", "QMaterial", "QMatrix4x4", "QMdiArea", "QMdiSubWindow", "QMediaCaptureSession", "QMediaDevices", "QMediaFormat", "QMediaMetaData", "QMediaPlayer", "QMediaRecorder", "QMediaTimeRange", "QMemoryBarrier", "QMenu", "QMenuBar", "QMesh", "QMessageAuthenticationCode", "QMessageBox", "QMessageLogContext", "QMessageLogger", "QMetaClassInfo", "QMetaEnum", "QMetaMethod", "QMetaObject", "QMetaProperty", "QMetaSequence", "QMetaType", "QMetalRoughMaterial", "QMicrophonePermission", "QMilankovicCalendar", "QMimeData", "QMimeDatabase", "QMimeType", "QModbusClient", "QModbusDataUnit", "QModbusDevice", "QModbusDeviceIdentification", "QModbusExceptionResponse", "QModbusPdu", "QModbusReply", "QModbusRequest", "QModbusResponse", "QModbusRtuSerialClient", "QModbusRtuSerialServer", "QModbusServer", "QModbusTcpClient", "QModbusTcpConnectionObserver", "QModbusTcpServer", "QModelIndex", "QModelRoleData", "QModelRoleDataSpan", "QMorphPhongMaterial", "QMorphTarget", "QMorphingAnimation", "QMouseDevice", "QMouseEvent", "QMouseEventTransition", "QMouseHandler", "QMoveEvent", "QMovie", "QMqttAuthenticationProperties", "QMqttClient", "QMqttConnectionProperties", "QMqttLastWillProperties", "QMqttMessage", "QMqttMessageStatusProperties", "QMqttPublishProperties", "QMqttServerConnectionProperties", "QMqttStringPair", "QMqttSubscription", "QMqttSubscriptionProperties", "QMqttTopicFilter", "QMqttTopicName", "QMqttUnsubscriptionProperties", "QMqttUserProperties", "QMultiHash", "QMultiMap", "QMultiMapIterator", "QMultiSampleAntiAliasing", "QMutableHashIterator", "QMutableLinkedListIterator", "QMutableListIterator", "QMutableMapIterator", "QMutableMultiMapIterator", "QMutableSetIterator", "QMutex", "QMutexLocker", "QNativeGestureEvent", "QNativeIpcKey", "QNdefFilter", "QNdefMessage", "QNdefNfcIconRecord", "QNdefNfcSmartPosterRecord", "QNdefNfcTextRecord", "QNdefNfcUriRecord", "QNdefRecord", "QNearFieldManager", "QNearFieldTarget", "QNetworkAccessManager", "QNetworkAddressEntry", "QNetworkCacheMetaData", "QNetworkCookie", "QNetworkCookieJar", "QNetworkDatagram", "QNetworkDiskCache", "QNetworkInformation", "QNetworkInterface", "QNetworkProxy", "QNetworkProxyFactory", "QNetworkProxyQuery", "QNetworkReply", "QNetworkRequest", "QNmeaPositionInfoSource", "QNmeaSatelliteInfoSource", "QNoDepthMask", "QNoDraw", "QNoPicking", "QNode", "QNodeId", "QNormalDiffuseMapAlphaMaterial", "QNormalDiffuseMapMaterial", "QNormalDiffuseSpecularMapMaterial", "QOAuth1", "QOAuth1Signature", "QOAuth2AuthorizationCodeFlow", "QObject", "QObjectBindableProperty", "QObjectCleanupHandler", "QObjectComputedProperty", "QObjectPicker", "QOcspResponse", "QOffscreenSurface", "QOpcUaAddNodeItem", "QOpcUaAddReferenceItem", "QOpcUaApplicationDescription", "QOpcUaApplicationIdentity", "QOpcUaApplicationRecordDataType", "QOpcUaArgument", "QOpcUaAttributeOperand", "QOpcUaAuthenticationInformation", "QOpcUaAxisInformation", "QOpcUaBinaryDataEncoding", "QOpcUaBrowsePathTarget", "QOpcUaBrowseRequest", "QOpcUaClient", "QOpcUaComplexNumber", "QOpcUaConnectionSettings", "QOpcUaContentFilterElement", "QOpcUaContentFilterElementResult", "QOpcUaDataValue", "QOpcUaDeleteReferenceItem", "QOpcUaDoubleComplexNumber", "QOpcUaEUInformation", "QOpcUaElementOperand", "QOpcUaEndpointDescription", "QOpcUaErrorState", "QOpcUaEventFilterResult", "QOpcUaExpandedNodeId", "QOpcUaExtensionObject", "QOpcUaGdsClient", "QOpcUaHistoryData", "QOpcUaHistoryReadRawRequest", "QOpcUaHistoryReadResponse", "QOpcUaKeyPair", "QOpcUaLiteralOperand", "QOpcUaLocalizedText", "QOpcUaMonitoringParameters", "QOpcUaMultiDimensionalArray", "QOpcUaNode", "QOpcUaNodeCreationAttributes", "QOpcUaPkiConfiguration", "QOpcUaProvider", "QOpcUaQualifiedName", "QOpcUaRange", "QOpcUaReadItem", "QOpcUaReadResult", "QOpcUaReferenceDescription", "QOpcUaRelativePathElement", "QOpcUaSimpleAttributeOperand", "QOpcUaUserTokenPolicy", "QOpcUaWriteItem", "QOpcUaWriteResult", "QOpcUaX509CertificateSigningRequest", "QOpcUaX509DistinguishedName", "QOpcUaX509Extension", "QOpcUaX509ExtensionBasicConstraints", "QOpcUaX509ExtensionExtendedKeyUsage", "QOpcUaX509ExtensionKeyUsage", "QOpcUaX509ExtensionSubjectAlternativeName", "QOpcUaXValue", "QOpenGLBuffer", "QOpenGLContext", "QOpenGLContextGroup", "QOpenGLDebugLogger", "QOpenGLDebugMessage", "QOpenGLExtraFunctions", "QOpenGLFramebufferObject", "QOpenGLFramebufferObjectFormat", "QOpenGLFunctions", "QOpenGLFunctions_1_0", "QOpenGLFunctions_1_1", "QOpenGLFunctions_1_2", "QOpenGLFunctions_1_3", "QOpenGLFunctions_1_4", "QOpenGLFunctions_1_5", "QOpenGLFunctions_2_0", "QOpenGLFunctions_2_1", "QOpenGLFunctions_3_0", "QOpenGLFunctions_3_1", "QOpenGLFunctions_3_2_Compatibility", "QOpenGLFunctions_3_2_Core", "QOpenGLFunctions_3_3_Compatibility", "QOpenGLFunctions_3_3_Core", "QOpenGLFunctions_4_0_Compatibility", "QOpenGLFunctions_4_0_Core", "QOpenGLFunctions_4_1_Compatibility", "QOpenGLFunctions_4_1_Core", "QOpenGLFunctions_4_2_Compatibility", "QOpenGLFunctions_4_2_Core", "QOpenGLFunctions_4_3_Compatibility", "QOpenGLFunctions_4_3_Core", "QOpenGLFunctions_4_4_Compatibility", "QOpenGLFunctions_4_4_Core", "QOpenGLFunctions_4_5_Compatibility", "QOpenGLFunctions_4_5_Core", "QOpenGLFunctions_ES2", "QOpenGLPaintDevice", "QOpenGLPixelTransferOptions", "QOpenGLShader", "QOpenGLShaderProgram", "QOpenGLTexture", "QOpenGLTextureBlitter", "QOpenGLTimeMonitor", "QOpenGLTimerQuery", "QOpenGLVersionFunctionsFactory", "QOpenGLVersionProfile", "QOpenGLVertexArrayObject", "QOpenGLWidget", "QOpenGLWindow", "QOperatingSystemVersion", "QOrbitCameraController", "QOrientationFilter", "QOrientationReading", "QOrientationSensor", "QPageLayout", "QPageRanges", "QPageSetupDialog", "QPageSize", "QPagedPaintDevice", "QPaintDevice", "QPaintDeviceWindow", "QPaintEngine", "QPaintEngineState", "QPaintEvent", "QPaintedTextureImage", "QPainter", "QPainterPath", "QPainterPathStroker", "QPalette", "QPanGesture", "QParallelAnimationGroup", "QParameter", "QPartialOrdering", "QPauseAnimation", "QPdfBookmarkModel", "QPdfDocument", "QPdfDocumentRenderOptions", "QPdfLink", "QPdfLinkModel", "QPdfPageNavigator", "QPdfPageRenderer", "QPdfPageSelector", "QPdfSearchModel", "QPdfSelection", "QPdfView", "QPdfWriter", "QPen", "QPerVertexColorMaterial", "QPercentBarSeries", "QPermission", "QPersistentModelIndex", "QPhongAlphaMaterial", "QPhongMaterial", "QPickEvent", "QPickLineEvent", "QPickPointEvent", "QPickTriangleEvent", "QPickingProxy", "QPickingSettings", "QPicture", "QPieLegendMarker", "QPieSeries", "QPieSlice", "QPinchGesture", "QPixelFormat", "QPixmap", "QPixmapCache", "QPlace", "QPlaceAttribute", "QPlaceCategory", "QPlaceContactDetail", "QPlaceContent", "QPlaceContentReply", "QPlaceContentRequest", "QPlaceDetailsReply", "QPlaceIcon", "QPlaceIdReply", "QPlaceManager", "QPlaceManagerEngine", "QPlaceMatchReply", "QPlaceMatchRequest", "QPlaceProposedSearchResult", "QPlaceRatings", "QPlaceReply", "QPlaceResult", "QPlaceSearchReply", "QPlaceSearchRequest", "QPlaceSearchResult", "QPlaceSearchSuggestionReply", "QPlaceSupplier", "QPlaceUser", "QPlainTextDocumentLayout", "QPlainTextEdit", "QPlaneGeometry", "QPlaneGeometryView", "QPlaneMesh", "QPlatformSurfaceEvent", "QPluginLoader", "QPoint", "QPointF", "QPointLight", "QPointSize", "QPointer", "QPointerEvent", "QPointingDevice", "QPointingDeviceUniqueId", "QPolarChart", "QPolygon", "QPolygonF", "QPolygonOffset", "QPressureFilter", "QPressureReading", "QPressureSensor", "QPrintDialog", "QPrintEngine", "QPrintPreviewDialog", "QPrintPreviewWidget", "QPrinter", "QPrinterInfo", "QProcess", "QProcessEnvironment", "QProgressBar", "QProgressDialog", "QPromise", "QProperty", "QPropertyAnimation", "QPropertyBindingError", "QPropertyChangeHandler", "QPropertyData", "QPropertyNotifier", "QProtobufMessage", "QProtobufMessageDeleter", "QProtobufSerializer", "QProximityFilter", "QProximityReading", "QProximitySensor", "QProxyStyle", "QPushButton", "QQmlAbstractUrlInterceptor", "QQmlApplicationEngine", "QQmlAspectEngine", "QQmlComponent", "QQmlContext", "QQmlEngine", "QQmlEngineExtensionPlugin", "QQmlError", "QQmlExpression", "QQmlExtensionPlugin", "QQmlFileSelector", "QQmlImageProviderBase", "QQmlIncubationController", "QQmlIncubator", "QQmlInfo", "QQmlListProperty", "QQmlListReference", "QQmlNetworkAccessManagerFactory", "QQmlParserStatus", "QQmlProperty", "QQmlPropertyMap", "QQmlPropertyValueSource", "QQmlScriptString", "QQuaternion", "QQueue", "QQuick3D", "QQuick3DExtensionHelpers", "QQuick3DGeometry", "QQuick3DInstancing", "QQuick3DObject", "QQuick3DRenderExtension", "QQuick3DTextureData", "QQuickAsyncImageProvider", "QQuickAttachedPropertyPropagator", "QQuickFramebufferObject", "QQuickGraphicsConfiguration", "QQuickGraphicsDevice", "QQuickImageProvider", "QQuickImageResponse", "QQuickItem", "QQuickItemGrabResult", "QQuickPaintedItem", "QQuickRenderControl", "QQuickRenderTarget", "QQuickStyle", "QQuickTextDocument", "QQuickTextureFactory", "QQuickView", "QQuickWebEngineProfile", "QQuickWidget", "QQuickWindow", "QRadialGradient", "QRadioButton", "QRandomGenerator", "QRandomGenerator64", "QRasterMode", "QRasterWindow", "QRawFont", "QRayCaster", "QRayCasterHit", "QReadLocker", "QReadWriteLock", "QRect", "QRectF", "QRecursiveMutex", "QRegExp", "QRegion", "QRegularExpression", "QRegularExpressionMatch", "QRegularExpressionMatchIterator", "QRegularExpressionValidator", "QRemoteObjectAbstractPersistedStore", "QRemoteObjectDynamicReplica", "QRemoteObjectHost", "QRemoteObjectHostBase", "QRemoteObjectNode", "QRemoteObjectPendingCall", "QRemoteObjectPendingCallWatcher", "QRemoteObjectPendingReply", "QRemoteObjectRegistry", "QRemoteObjectRegistryHost", "QRemoteObjectReplica", "QRenderAspect", "QRenderCapabilities", "QRenderCapture", "QRenderCaptureReply", "QRenderPass", "QRenderPassFilter", "QRenderSettings", "QRenderState", "QRenderStateSet", "QRenderSurfaceSelector", "QRenderTarget", "QRenderTargetOutput", "QRenderTargetSelector", "QResizeEvent", "QResource", "QRgba64", "QRgbaFloat", "QRhi", "QRhiBuffer", "QRhiColorAttachment", "QRhiCommandBuffer", "QRhiComputePipeline", "QRhiD3D11InitParams", "QRhiD3D11NativeHandles", "QRhiD3D12CommandBufferNativeHandles", "QRhiD3D12InitParams", "QRhiD3D12NativeHandles", "QRhiDepthStencilClearValue", "QRhiDriverInfo", "QRhiGles2InitParams", "QRhiGles2NativeHandles", "QRhiGraphicsPipeline", "QRhiInitParams", "QRhiMetalCommandBufferNativeHandles", "QRhiMetalInitParams", "QRhiMetalNativeHandles", "QRhiNativeHandles", "QRhiNullInitParams", "QRhiNullNativeHandles", "QRhiReadbackDescription", "QRhiReadbackResult", "QRhiRenderBuffer", "QRhiRenderPassDescriptor", "QRhiRenderTarget", "QRhiResource", "QRhiResourceUpdateBatch", "QRhiSampler", "QRhiScissor", "QRhiShaderResourceBinding", "QRhiShaderResourceBindings", "QRhiShaderStage", "QRhiStats", "QRhiSwapChain", "QRhiSwapChainHdrInfo", "QRhiSwapChainProxyData", "QRhiSwapChainRenderTarget", "QRhiTexture", "QRhiTextureCopyDescription", "QRhiTextureRenderTarget", "QRhiTextureRenderTargetDescription", "QRhiTextureSubresourceUploadDescription", "QRhiTextureUploadDescription", "QRhiTextureUploadEntry", "QRhiVertexInputAttribute", "QRhiVertexInputBinding", "QRhiVertexInputLayout", "QRhiViewport", "QRhiVulkanCommandBufferNativeHandles", "QRhiVulkanInitParams", "QRhiVulkanNativeHandles", "QRhiVulkanRenderPassNativeHandles", "QRomanCalendar", "QRotationFilter", "QRotationReading", "QRotationSensor", "QRubberBand", "QRunnable", "QSGBasicGeometryNode", "QSGClipNode", "QSGD3D11Texture", "QSGD3D12Texture", "QSGDynamicTexture", "QSGFlatColorMaterial", "QSGGeometry", "QSGGeometryNode", "QSGImageNode", "QSGMaterial", "QSGMaterialShader", "QSGMaterialType", "QSGMetalTexture", "QSGNode", "QSGOpacityNode", "QSGOpaqueTextureMaterial", "QSGOpenGLTexture", "QSGRectangleNode", "QSGRenderNode", "QSGRendererInterface", "QSGSimpleRectNode", "QSGSimpleTextureNode", "QSGTexture", "QSGTextureMaterial", "QSGTextureProvider", "QSGTransformNode", "QSGVertexColorMaterial", "QSGVulkanTexture", "QSaveFile", "QScatter3DSeries", "QScatterDataItem", "QScatterDataProxy", "QScatterSeries", "QScene2D", "QSceneLoader", "QScissorTest", "QScopeGuard", "QScopedArrayPointer", "QScopedPointer", "QScopedPropertyUpdateGroup", "QScopedValueRollback", "QScreen", "QScreenCapture", "QScreenRayCaster", "QScrollArea", "QScrollBar", "QScrollEvent", "QScrollPrepareEvent", "QScroller", "QScrollerProperties", "QSctpServer", "QSctpSocket", "QScxmlCompiler", "QScxmlCppDataModel", "QScxmlDataModel", "QScxmlDynamicScxmlServiceFactory", "QScxmlError", "QScxmlEvent", "QScxmlInvokableService", "QScxmlInvokableServiceFactory", "QScxmlNullDataModel", "QScxmlStateMachine", "QScxmlStaticScxmlServiceFactory", "QScxmlTableData", "QSeamlessCubemap", "QSemaphore", "QSemaphoreReleaser", "QSensor", "QSensorBackend", "QSensorBackendFactory", "QSensorChangesInterface", "QSensorFilter", "QSensorManager", "QSensorPluginInterface", "QSensorReading", "QSequentialAnimationGroup", "QSequentialIterable", "QSerialPort", "QSerialPortInfo", "QSessionManager", "QSet", "QSetFence", "QSetIterator", "QSettings", "QShader", "QShaderBaker", "QShaderCode", "QShaderData", "QShaderDescription", "QShaderImage", "QShaderKey", "QShaderProgram", "QShaderProgramBuilder", "QShaderVersion", "QSharedData", "QSharedDataPointer", "QSharedGLTexture", "QSharedMemory", "QSharedPointer", "QShortcut", "QShortcutEvent", "QShowEvent", "QSignalBlocker", "QSignalMapper", "QSignalSpy", "QSignalTransition", "QSinglePointEvent", "QSize", "QSizeF", "QSizeGrip", "QSizePolicy", "QSkeleton", "QSkeletonLoader", "QSkyboxEntity", "QSlider", "QSocketNotifier", "QSortFilterProxyModel", "QSortPolicy", "QSoundEffect", "QSpacerItem", "QSpatialSound", "QSphereGeometry", "QSphereGeometryView", "QSphereMesh", "QSpinBox", "QSplashScreen", "QSplineSeries", "QSplitter", "QSplitterHandle", "QSpotLight", "QSqlDatabase", "QSqlDriver", "QSqlDriverCreator", "QSqlDriverCreatorBase", "QSqlDriverPlugin", "QSqlError", "QSqlField", "QSqlIndex", "QSqlQuery", "QSqlQueryModel", "QSqlRecord", "QSqlRelation", "QSqlRelationalDelegate", "QSqlRelationalTableModel", "QSqlResult", "QSqlTableModel", "QSslCertificate", "QSslCertificateExtension", "QSslCipher", "QSslConfiguration", "QSslDiffieHellmanParameters", "QSslEllipticCurve", "QSslError", "QSslKey", "QSslPreSharedKeyAuthenticator", "QSslServer", "QSslSocket", "QStack", "QStackedBarSeries", "QStackedLayout", "QStackedWidget", "QStandardItem", "QStandardItemEditorCreator", "QStandardItemModel", "QStandardPaths", "QState", "QStateMachine", "QStaticByteArrayMatcher", "QStaticPlugin", "QStaticText", "QStatusBar", "QStatusTipEvent", "QStencilMask", "QStencilOperation", "QStencilOperationArguments", "QStencilTest", "QStencilTestArguments", "QStorageInfo", "QString", "QStringConverter", "QStringDecoder", "QStringEncoder", "QStringList", "QStringListModel", "QStringMatcher", "QStringRef", "QStringTokenizer", "QStringView", "QStyle", "QStyleFactory", "QStyleHintReturn", "QStyleHintReturnMask", "QStyleHintReturnVariant", "QStyleHints", "QStyleOption", "QStyleOptionButton", "QStyleOptionComboBox", "QStyleOptionComplex", "QStyleOptionDockWidget", "QStyleOptionFocusRect", "QStyleOptionFrame", "QStyleOptionGraphicsItem", "QStyleOptionGroupBox", "QStyleOptionHeader", "QStyleOptionHeaderV2", "QStyleOptionMenuItem", "QStyleOptionProgressBar", "QStyleOptionRubberBand", "QStyleOptionSizeGrip", "QStyleOptionSlider", "QStyleOptionSpinBox", "QStyleOptionTab", "QStyleOptionTabBarBase", "QStyleOptionTabWidgetFrame", "QStyleOptionTitleBar", "QStyleOptionToolBar", "QStyleOptionToolBox", "QStyleOptionToolButton", "QStyleOptionViewItem", "QStylePainter", "QStylePlugin", "QStyledItemDelegate", "QSubtreeEnabler", "QSupportedWritingSystems", "QSurface", "QSurface3DSeries", "QSurfaceDataItem", "QSurfaceDataProxy", "QSurfaceFormat", "QSvgGenerator", "QSvgRenderer", "QSvgWidget", "QSwipeGesture", "QSyntaxHighlighter", "QSysInfo", "QSystemSemaphore", "QSystemTrayIcon", "QTabBar", "QTabWidget", "QTableView", "QTableWidget", "QTableWidgetItem", "QTableWidgetSelectionRange", "QTabletEvent", "QTaggedIterator", "QTapAndHoldGesture", "QTapGesture", "QTaskBuilder", "QTcpServer", "QTcpSocket", "QTechnique", "QTechniqueFilter", "QTemporaryDir", "QTemporaryFile", "QTestEventList", "QText2DEntity", "QTextBlock", "QTextBlockFormat", "QTextBlockGroup", "QTextBlockUserData", "QTextBoundaryFinder", "QTextBrowser", "QTextCharFormat", "QTextCodec", "QTextCursor", "QTextDecoder", "QTextDocument", "QTextDocumentFragment", "QTextDocumentWriter", "QTextEdit", "QTextEncoder", "QTextFormat", "QTextFragment", "QTextFrame", "QTextFrameFormat", "QTextImageFormat", "QTextInlineObject", "QTextItem", "QTextLayout", "QTextLength", "QTextLine", "QTextList", "QTextListFormat", "QTextObject", "QTextObjectInterface", "QTextOption", "QTextStream", "QTextTable", "QTextTableCell", "QTextTableCellFormat", "QTextTableFormat", "QTextToSpeech", "QTexture1D", "QTexture1DArray", "QTexture2D", "QTexture2DArray", "QTexture2DMultisample", "QTexture2DMultisampleArray", "QTexture3D", "QTextureBuffer", "QTextureCubeMap", "QTextureCubeMapArray", "QTextureData", "QTextureDataUpdate", "QTextureGenerator", "QTextureImage", "QTextureImageData", "QTextureImageDataGenerator", "QTextureLoader", "QTextureMaterial", "QTextureRectangle", "QTextureWrapMode", "QThread", "QThreadPool", "QThreadStorage", "QTileRules", "QTiltFilter", "QTiltReading", "QTiltSensor", "QTime", "QTimeEdit", "QTimeLine", "QTimeZone", "QTimer", "QTimerEvent", "QToolBar", "QToolBox", "QToolButton", "QToolTip", "QTorusGeometry", "QTorusGeometryView", "QTorusMesh", "QTouch3DInputHandler", "QTouchEvent", "QTouchEventSequence", "QTransform", "QTranslator", "QTransposeProxyModel", "QTreeView", "QTreeWidget", "QTreeWidgetItem", "QTreeWidgetItemIterator", "QTypeRevision", "QUdpSocket", "QUiLoader", "QUndoCommand", "QUndoGroup", "QUndoStack", "QUndoView", "QUnhandledException", "QUntypedBindable", "QUrl", "QUrlQuery", "QUtf8StringView", "QUtiMimeConverter", "QUuid", "QVBarModelMapper", "QVBoxLayout", "QVBoxPlotModelMapper", "QVCandlestickModelMapper", "QVPieModelMapper", "QVXYModelMapper", "QValidator", "QValue3DAxis", "QValue3DAxisFormatter", "QValueAxis", "QVarLengthArray", "QVariant", "QVariantAnimation", "QVariantConstPointer", "QVariantPointer", "QVariantRef", "QVector", "QVector2D", "QVector3D", "QVector4D", "QVersionNumber", "QVertexBlendAnimation", "QVideoFrame", "QVideoFrameFormat", "QVideoSink", "QVideoWidget", "QViewport", "QVirtualKeyboardAbstractInputMethod", "QVirtualKeyboardDictionary", "QVirtualKeyboardDictionaryManager", "QVirtualKeyboardInputContext", "QVirtualKeyboardInputEngine", "QVirtualKeyboardObserver", "QVirtualKeyboardSelectionListModel", "QVirtualKeyboardTrace", "QVoice", "QVulkanDeviceFunctions", "QVulkanExtension", "QVulkanFunctions", "QVulkanInfoVector", "QVulkanInstance", "QVulkanLayer", "QVulkanWindow", "QVulkanWindowRenderer", "QWGLContext", "QWaitCondition", "QWaitFence", "QWaylandApplication", "QWaylandBufferRef", "QWaylandClient", "QWaylandCompositor", "QWaylandCompositorExtension", "QWaylandCompositorExtensionTemplate", "QWaylandIdleInhibitManagerV1", "QWaylandIviApplication", "QWaylandIviSurface", "QWaylandKeyboard", "QWaylandObject", "QWaylandOutput", "QWaylandOutputMode", "QWaylandPointer", "QWaylandPresentationTime", "QWaylandQtTextInputMethodManager", "QWaylandQuickItem", "QWaylandQuickShellIntegration", "QWaylandQuickShellSurfaceItem", "QWaylandResource", "QWaylandSeat", "QWaylandShellSurface", "QWaylandShellSurfaceTemplate", "QWaylandSurface", "QWaylandSurfaceGrabber", "QWaylandSurfaceRole", "QWaylandTextInputManager", "QWaylandTouch", "QWaylandView", "QWaylandViewporter", "QWaylandWlShell", "QWaylandWlShellSurface", "QWaylandXdgDecorationManagerV1", "QWaylandXdgOutputManagerV1", "QWaylandXdgPopup", "QWaylandXdgShell", "QWaylandXdgSurface", "QWaylandXdgToplevel", "QWeakPointer", "QWebChannel", "QWebChannelAbstractTransport", "QWebEngineCertificateError", "QWebEngineClientCertificateSelection", "QWebEngineClientCertificateStore", "QWebEngineContextMenuRequest", "QWebEngineCookieStore", "QWebEngineDownloadRequest", "QWebEngineFileSystemAccessRequest", "QWebEngineFindTextResult", "QWebEngineFullScreenRequest", "QWebEngineHistory", "QWebEngineHistoryItem", "QWebEngineHistoryModel", "QWebEngineHttpRequest", "QWebEngineLoadingInfo", "QWebEngineNavigationRequest", "QWebEngineNewWindowRequest", "QWebEngineNotification", "QWebEnginePage", "QWebEngineProfile", "QWebEngineQuotaRequest", "QWebEngineRegisterProtocolHandlerRequest", "QWebEngineScript", "QWebEngineScriptCollection", "QWebEngineSettings", "QWebEngineUrlRequestInfo", "QWebEngineUrlRequestInterceptor", "QWebEngineUrlRequestJob", "QWebEngineUrlScheme", "QWebEngineUrlSchemeHandler", "QWebEngineView", "QWebSocket", "QWebSocketCorsAuthenticator", "QWebSocketHandshakeOptions", "QWebSocketServer", "QWhatsThis", "QWhatsThisClickedEvent", "QWheelEvent", "QWidget", "QWidgetAction", "QWidgetItem", "QWinEventNotifier", "QWindow", "QWindowCapture", "QWindowStateChangeEvent", "QWindowsMimeConverter", "QWizard", "QWizardPage", "QWriteLocker", "QX11Application", "QXYLegendMarker", "QXYSeries", "QXmlAttributes", "QXmlContentHandler", "QXmlDTDHandler", "QXmlDeclHandler", "QXmlDefaultHandler", "QXmlEntityResolver", "QXmlErrorHandler", "QXmlInputSource", "QXmlLexicalHandler", "QXmlLocator", "QXmlNamespaceSupport", "QXmlParseException", "QXmlReader", "QXmlSimpleReader", "QXmlStreamAttribute", "QXmlStreamAttributes", "QXmlStreamEntityDeclaration", "QXmlStreamEntityResolver", "QXmlStreamNamespaceDeclaration", "QXmlStreamNotationDeclaration", "QXmlStreamReader", "QXmlStreamWriter", "QtROClientFactory", "QtROServerFactory", "SourceLocation", "WhenAnyResult", "qfloat16", "qoutputrange"],
"technologies": ["C++ Libraries", "Desktop Applications"],
"description": "Qt is a cross-platform application and UI framework.",
"image": "https://upload.wikimedia.org/wikipedia/commons/8/81/Qt_logo_neon_2022.svg"
},
"TinyXML-2": {
"imports": ["tinyxml2"],
"technologies": ["C++ Libraries", "XML"],
"description": "TinyXML-2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs."
},
"VTK": {
"imports": ["vtk"],
"technologies": ["C++ Libraries", "Image Processing", "3D Graphics", "Modelling", "Volume Rendering", "2D Plotting"],
"description": "The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, modeling, image processing, volume rendering, scientific visualization, and 2D plotting."
}
},
"CSS": {
"AdminLTE": {
"imports": ["AdminLTE.css", "AdminLTE.min.css"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "Best open source admin dashboard & control panel theme. Built on top of Bootstrap, AdminLTE provides a range of responsive, reusable, and commonly used components.",
"language": "CSS"
},
"Bootstrap": {
"imports": [
"bootstrap.css",
"boostrap.min.css",
"AdminLTE.css",
"AdminLTE.min.css"
],
"technologies": ["Frontend", "CSS frameworks"],
"description": "Bootstrap is an open source toolkit for developing with HTML, CSS, and JS.",
"image": "https://mdbootstrap.com/img/logo/brands/bootstrap.jpg"
},
"Bulma": {
"imports": ["bulma.css"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "Bulma is a free, open source CSS framework based on Flexbox and used by more than 200,000 developers.",
"language": "CSS"
},
"Emotion": {
"imports": ["@emotion/"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "Emotion is a library designed for writing css styles with JavaScript."
},
"Glamorous": {
"imports": ["glamorous"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "Maintainable CSS with React."
},
"Materialize CSS": {
"imports": ["materialize.min.css", "materialize.css"],
"technologies": ["CSS frameworks"],
"description": "A modern responsive front-end framework based on Material Design"
},
"PatternFly": {
"imports": ["@patternfly/patternfly"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "PatternFly is an open source design system created to enable consistency and usability across a wide range of applications and use cases.",
"image": "https://i.github-camo.com/8b1315539cf8078c2d44644f312d8e0f09225361/68747470733a2f2f7777772e7061747465726e666c792e6f72672f6173736574732f696d672f7061747465726e666c792d6f72622e737667"
},
"Radium": {
"imports": ["radium"],
"technologies": ["Frontend", "Web Development", "CSS Frameworks"],
"description": "A set of tools to manage inline styles on React elements, giving you powerful styling capabilities without CSS"
},
"Semantic UI": {
"imports": ["semantic.min.css", "semantic.css"],
"technologies": ["Web Development", "SPA"],
"description": "User Interface is the language of the web."
},
"Tailwind CSS": {
"imports": ["tailwindcss"],
"technologies": ["Frontend", "CSS frameworks"],
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
"image": "https://refactoringui.nyc3.cdn.digitaloceanspaces.com/tailwind-logo.svg"
}
},
"D": {
"arsd": {
"imports": ["arsd"],
"technologies": ["D Libraries", "Desktop Applications", "Frameworks", "XML", "Databases", "Web Development"],
"description": "This is a collection of modules written on D."
},
"DCompute": {
"imports": ["dcompute"],
"technologies": ["Machine Learning", "Deep Learning", "D Libraries"],
"description": "DCompute is Native execution of D on GPUs and other Accelerators."
},
"dcv": {
"imports": ["dcv"],
"technologies": ["Image Processing", "Computer Vision", "D Libraries"],
"description": "Computer Vision Library for D Programming Language."
},
"dlangui": {
"imports": ["dlangui"],
"technologies": ["D Libraries", "Desktop Applications"],
"description": "Cross Platform GUI for D programming language (not binding)."
},
"gtkd": {
"imports": ["gtk", "gtkc", "gio", "glib", "gstreamer", "gobject"],
"technologies": ["D Libraries", "Frameworks", "Desktop Applications"],
"description": "GtkD is a D binding and OO wrapper of GTK+."
},
"libdparse": {
"imports": ["dparse"],
"technologies": ["D Libraries"],
"description": "Library for lexing and parsing D source code."
},
"libmir": {
"imports": ["mir"],
"technologies": [
"Scientific Computing",
"Data Processing",
"Data Science",
"D Libraries"
],
"description": "Mir Algorithm in Dlang."
},
"vibed": {
"imports": ["vibe"],
"technologies": ["D Libraries", "Frameworks", "Databases", "Web Development"],
"description": "high-performance asynchronous I/O, concurrency and web application toolkit written in D."
}
},
"Dart": {
"Dask": {
"imports": ["dask"],
"technologies": ["Big Data", "Scientific Computing", "Data Processing", "Data Science"],
"description": "Dask is a flexible library for parallel computing in Python.",
"image": "https://docs.dask.org/en/stable/_static/images/dask-horizontal-white.svg"
},
"fl_chart": {
"imports": [
"package:fl_chart/fl_chart.dart",
"package:fl_chart",
"bar_chart",
"line_chart",
"pie_chart",
"scatter_chart"
],
"technologies": ["Data Visualization"],
"description": "A powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart."
},
"Flutter": {
"imports": ["package:flutter"],
"technologies": ["Mobile Development"],
"description": "Flutter is Google's UI toolkit for crafting beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.",
"image": "https://upload.wikimedia.org/wikipedia/commons/1/17/Google-flutter-logo.png"
}
},
"Go": {
"chi": {
"imports": ["github.com/go-chi/chi"],
"technologies": ["Web Development", "Backend"],
"description": "chi is a lightweight, idiomatic and composable router for building Go HTTP services.",
"image": "https://camo.githubusercontent.com/f72d07b7d898f8935d557867df17416a1b430a2572f8ea1bae57d1700f5c754b/68747470733a2f2f63646e2e7261776769742e636f6d2f676f2d6368692f6368692f6d61737465722f5f6578616d706c65732f6368692e737667"
},
"discordgo": {
"imports": ["github.com/bwmarrin/discordgo"],
"technologies": ["framework", "API"],
"description": "DiscordGo is a Go package that provides low level bindings to the Discord chat client API.",
"image": "https://github.com/bwmarrin/discordgo/raw/master/docs/img/discordgo.png"
},
"Echo": {
"imports": ["github.com/labstack/echo"],
"technologies": ["framework"],
"description": "High performance, minimalist Go web framework."
},
"Elastic": {
"imports": ["github.com/olivere/elastic"],
"technologies": ["Databases", "ElasticSearch"],
"description": "Elastic is an Elasticsearch client for the Go programming language."
},
"Gin": {
"imports": ["github.com/gin-gonic/gin"],
"technologies": ["Web Development", "Backend"],
"description": "Gin is a HTTP web framework written in Go (Golang).",
"image": "https://raw.githubusercontent.com/gin-gonic/logo/master/color.png"
},
"Ginkgo": {
"imports": ["github.com/onsi/gomega"],
"technologies": ["Testing"],
"description": "Ginkgo is a mature testing framework for Go designed to help you write expressive specs"
},
"Go Micro": {
"imports": ["github.com/micro/go-micro"],
"technologies": ["microservice"],
"description": "Go Micro provides the core requirements for distributed systems development including RPC and Event driven communication."
},
"Go-MySQL-Driver": {
"imports": ["github.com/go-sql-driver/mysql"],
"technologies": ["Databases", "MySQL"],
"description": "Go MySQL Driver is a MySQL driver for Go's (golang) database/sql package"
},
"GORM": {
"imports": ["github.com/jinzhu/gorm"],
"technologies": ["ORM"],
"description": "GORM is a fully-featured ORM library for Golang supporting MySQL, SQLite3, PostgreSQL and Microsoft SQL Server."
},
"jwt": {
"imports": ["github.com/golang-jwt/jwt"],
"technologies": ["Web Development", "Security", "Backend"],
"description": "A go implementation of JSON Web Tokens."
},
"logrus": {
"imports": ["github.com/sirupsen/logrus"],
"technologies": ["Logging"],
"description": "Logrus is a structured logger for Go (golang), completely API compatible with the standard library logger."
},
"mgo": {
"imports": ["github.com/globalsign/mgo"],
"technologies": ["Databases", "MongoDB"],
"description": "MongoDB driver for Go"
},
"mongo-go-driver": {
"imports": ["github.com/mongodb/mongo-go-driver"],
"technologies": ["Databases", "MongoDB"],
"description": "Official MongoDB driver for Go",
"image": "https://github.com/mongodb/mongo-go-driver/raw/master/etc/assets/mongo-gopher.png"
},
"pgx": {
"imports": ["github.com/jackc/pgx/v4", "github.com/jackc/pgx"],
"technologies": ["Databases", "PostgreSQL"],
"description": "PostgreSQL Driver and Toolkit"
},
"Ponzu": {
"imports": ["github.com/ponzu-cms/ponzu"],
"technologies": ["CMS"],
"description": "Headless CMS with automatic JSON API. Featuring auto-HTTPS from Let's Encrypt, HTTP/2 Server Push, and flexible server framework written in Go."
},
"pq": {
"imports": ["github.com/lib/pq"],
"technologies": ["Databases", "PostgreSQL"],
"description": "A pure Go postgres driver for Go's database/sql package"
},
"Prometheus Go Client": {
"imports": ["github.com/prometheus/client_golang/prometheus"],
"technologies": ["Instrumentation"],
"description": "This is the Go client library for Prometheus."
},
"yaml": {
"imports": ["gopkg.in/yaml.v2"],
"technologies": ["Web Development", "Backend"],
"description": "YAML support for the Go language"
}
},
"Groovy": {
"Grails": {
"imports": ["grails"],
"technologies": ["Web Development", "Java Frameworks"],
"description": "A powerful Groovy-based web application framework for the JVM built on top of Spring Boot",
"image": "https://raw.githubusercontent.com/apache/groovy-website/asf-site/site/src/site/assets/img/groovy-logo-colored.svg"
}
},
"Java": {
"Apache Spark": {
"imports": ["org.apache.spark"],
"technologies": ["Data Processing", "Backend"],
"description": "Unified analytics engine for large-scale data processing.",
"image": "https://spark.apache.org/images/spark-logo-trademark.png"
},
"Cayenne": {
"imports": ["org.apache.cayenne"],
"technologies": ["Databases", "ORM", "MySQL"],
"description": "Apache Cayenne™ is an open source Java object-to-relational mapping framework"
},
"Eureka": {
"imports": ["org.springframework.cloud.netflix.eureka"],
"technologies": ["Service Discovery"],
"description": "A service discovery agent that can be leveraged in the development of microservices where service discovery is preferred over direct http/https interactions."
},
"Gson": {
"imports": ["com.google.gson"],
"technologies": ["JSon"],
"description": "Gson is a Java library that can be used to convert Java Objects into their JSON representation."
},
"Guardian": {
"imports": [
"org.comroid.guardian-core",
"org.comroid.mutatio",
"org.comroid.uniform",
"org.comroid.varbind",
"org.comroid.restless",
"org.comroid.webkit"
],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "The guardian Framework aims at supplying simple, yet powerful solutions for REST related tasks.",
"image": "https://cdn.comroid.org/img/guardian-small.png"
},
"GWT": {
"imports": ["com.google.gwt"],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "Development toolkit for building and optimizing complex browser-based applications..",
"image": "http://www.gwtproject.org/assets/build/img/navLogoBig.png"
},
"Hibernate": {
"imports": ["org.hibernate"],
"technologies": ["ORM"],
"description": "Domain model persistence and Data library for Java."
},
"Jakarta Server Faces (JSF)": {
"imports": ["javax.faces", "com.sun.faces"],
"technologies": [
"Web Development",
"Java Frameworks",
"Frontend",
"Backend"
],
"description": "MVC framework for building user interfaces for web applications.",
"image": "https://jakarta.ee/images/jakarta/jakarta-ee-logo-color.svg"
},
"Jersey": {
"imports": ["org.glassfish.jersey"],
"technologies": ["Web Development", "Java Frameworks", "Backend", "REST"],
"description": "Web services framework to create RESTful services.",
"image": "https://eclipse-ee4j.github.io/jersey.github.io/images/jersey_logo.png"
},
"jsoup": {
"imports": ["org.jsoup"],
"technologies": ["Web Scraping"],
"description": "Java HTML Parser."
},
"JUnit": {
"imports": ["org.junit", "junit"],
"technologies": ["Testing"],
"description": "JUnit is a unit-testing framework for Java.",
"image": "https://junit.org/junit4/images/junit-logo.png"
},
"LibGDX": {
"imports": ["com.badlogic.gdx"],
"technologies": [
"Java Frameworks",
"Mobile Development",
"Game Development",
"Desktop Development",
"Desktop Applications",
"Mobile Applications"
],
"description": "libGDX is a free and open-source game-development application framework written in the Java programming language with some C and C++ components for performance dependent code. It allows for the development of desktop and mobile games by using the same code base. It is cross-platform, supporting Windows, Linux, Mac OS X, Android, iOS, BlackBerry and web browsers with WebGL support.",
"image": "https://www.badlogicgames.com/wordpress/wp-content/uploads/2011/05/libGDX-RedGlossyNoReflection.png"
},
"Micronaut": {
"imports": ["io.micronaut"],
"technologies": ["Web Development", "Microservices", "Java Frameworks"],
"description": "Micronaut is a modern, JVM-based, full-stack framework for building modular, easily testable microservice and serverless applications.",
"image": "https://raw.githubusercontent.com/micronaut-projects/static-website/master/main/src/main/resources/assets/images/micronaut_mini.svg"
},
"Mockito": {
"imports": ["org.mockito"],
"technologies": ["Testing"],
"description": "Mocking framework for unit tests in Java",
"image": "https://raw.githubusercontent.com/mockito/mockito.github.io/master/img/logo%402x.png"
},
"mongo-java-driver": {
"imports": ["org.mongodb"],
"technologies": ["Databases", "MongoDB"],
"description": "The Java driver for MongoDB"
},
"morphia": {
"imports": ["org.mongodb.morphia"],
"technologies": ["Databases", "MongoDB"],
"description": "MongoDB object-document mapper in Java"
},
"MySQL": {
"imports": ["com.mysql"],
"technologies": ["Databases", "MySQL"],
"description": "MySQL driver for Java"
},
"OkHttp": {
"imports": ["com.squareup.okhttp"],
"technologies": ["Mobile Development", "Java Frameworks"],
"description": "OkHttp is an HTTP client that’s efficient by default: HTTP/2 support, reduces request latency... ."
},
"Okio": {
"imports": ["com.squareup.okio"],
"technologies": [
"Mobile Development",
"Java Frameworks",
"Kotlin Frameworks"
],
"description": "A modern I/O library for Android, Kotlin, and Java."
},
"OpenFeign": {
"imports": ["org.springframework.cloud.openfeign"],
"technologies": ["Http/Https"],
"description": "Convenience http/https library."
},
"PgJDBC": {
"imports": ["org.postgresql"],
"technologies": ["Databases", "PostgreSQL"],
"description": "PostgreSQL JDBC Driver (PgJDBC for short) allows Java programs to connect to a PostgreSQL database using standard, database independent Java code."
},
"Picasso": {
"imports": ["com.squareup.picasso"],
"technologies": ["Mobile Development"],
"description": "A powerful image downloading and caching library for Android."
},
"Quarkus": {
"imports": ["io.quarkus"],
"technologies": ["Java Frameworks", "REST"],
"description": "Supersonic Subatomic Java."
},
"Retrofit": {
"imports": ["com.squareup.retrofit"],
"technologies": ["Mobile Development", "Java Frameworks"],
"description": "A type-safe HTTP client for Android and Java."
},
"Rex": {
"imports": ["Rex"],
"technologies": ["Automation", "DevOps"],
"description": "Rex, the friendly automation framework.",
"image": "https://www.rexify.org/public/images/skin/rexify.org/favicon.png"
},
"RxJava": {
"imports": ["io.reactivex"],
"technologies": ["Web Development", "Mobile Development"],
"description": "Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM"
},
"Selenium WebDriver": {
"imports": ["org.openqa.selenium"],
"technologies": ["Test Automation"],
"description": "A collection of language specific bindings to drive a browser",
"image": "https://raw.githubusercontent.com/SeleniumHQ/seleniumhq.github.io/trunk/website_and_docs/static/images/logos/webdriver.svg"
},
"SLF4J": {
"imports": ["org.slf4j"],
"technologies": ["Logging"],
"description": "Simple facade or abstraction for various logging frameworks.",
"image": "http://www.slf4j.org/images/logos/slf4j-logo.jpg"
},
"Spark Java": {
"imports": ["spark"],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "A micro framework for creating web applications with minimal effort.",
"image": "http://sparkjava.com/img/logo.svg"
},
"Spring": {
"imports": ["org.springframework"],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "Comprehensive programming and configuration model for modern Java-based enterprise applications.",
"image": "https://spring.io/img/spring.svg"
},
"Spring Boot": {
"imports": ["org.springframework.boot"],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "Bootstrap a Spring application with little or no configuration.",
"image": "https://spring.io/img/spring.svg"
},
"Spring Cloud": {
"imports": ["org.springframework.cloud"],
"technologies": [
"Java Frameworks",
"Web Development",
"Backend",
"Microservices"
],
"description": "A set of libraries within the Spring ecosystem for the development of cloud native apps.",
"image": "https://spring.io/img/spring.svg"
},
"spring-data-mongodb": {
"imports": ["com.mongodb.client"],
"technologies": ["Databases", "MongoDB"],
"description": "Provide support to increase developer productivity in Java when using MongoDB."
},
"Struts": {
"imports": ["org.apache.struts2", "org.apache.struts"],
"technologies": [
"Web Development",
"Java Frameworks",
"Frontend",
"Backend"
],
"description": "MVC framework for creating elegant, modern Java web applications.",
"image": "https://struts.apache.org/img/struts-logo.svg"
},
"TestNG": {
"imports": ["org.testng"],
"technologies": ["Testing"],
"description": "Inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.",
"image": "https://i0.wp.com/testingfreak.com/wp-content/uploads/2015/01/testng1.png?resize=568%2C201"
},
"Vaadin": {
"imports": ["com.vaadin"],
"technologies": [
"Web Development",
"Java Frameworks",
"Frontend",
"Backend"
],
"description": "Full stack framework for building web apps in Java.",
"image": "https://vaadin.com/images/vaadin-logo.svg"
},
"Vert.x": {
"imports": ["io.vertx"],
"technologies": ["Web Development", "Java Frameworks", "Backend"],
"description": "Tool-kit for building reactive applications on the JVM.",
"image": "https://vertx.io/assets/logo-sm.png"
},
"Web3": {
"imports": ["org.web3j"],
"technologies": ["Blockchain", "Wweb 3.0"],
"description": "Java's web3 library for interaction with smart contracts."
},
"WireMock": {
"imports": ["com.github.tomakehurst.wiremock"],
"technologies": ["Testing"],
"description": "Mock services while writing integration tests."
}
},
"JavaScript": {
"AfterJS": {
"imports": ["@jaredpalmer/after"],
"technologies": ["Server side rendering"],
"description": "After.js enables Next.js-like data fetching with any React SSR app that uses React Router 4."
},
"Alpine.js": {
"imports": ["alpinejs", "@alpinejs/"],
"technologies": ["Frontend", "Web Development", "JavaScript Frameworks"],
"description": "A rugged, minimal framework for composing JavaScript behavior in your markup.",
"image": "https://avatars.githubusercontent.com/u/59030169?s=200&v=4"
},
"Angular": {
"imports": ["@angular/", "angular2"],
"technologies": ["Frontend", "Web Development", "SPA"],
"description": "Angular is an open source web application platform.",
"image": "https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/angular/angular.png"
},
"Angular Universal": {
"imports": ["@nguniversal/"],
"technologies": ["Web Development", "SPA", "Server side rendering"],
"description": "A technology that renders Angular applications on the server."
},
"AngularJS": {
"imports": ["angular"],
"technologies": ["Frontend", "Web Development", "SPA"],
"description": "AngularJS is a predecessor of Angular, an open source web application platform.",
"image": "https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/angular/angular.png"
},
"AnimeJS": {
"imports": ["anime.js"],
"technologies": ["Frontend", "Animation"],
"description": "Anime.js is a lightweight JavaScript animation library with a simple, yet powerful API. It works with CSS properties, SVG, DOM attributes and JavaScript Objects.",
"image": "https://animejs.com/documentation/assets/img/anime-mini-logo.svg"
},
"BabylonJS": {
"imports": ["babylonjs"],
"technologies": ["WebGL"],
"description": "Powerful, beautiful, simple, open, web-based 3D at its best"
},
"camo": {
"imports": ["camo"],
"technologies": ["Databases", "MongoDB"],
"description": "A class-based ES6 ODM for Mongo-like databases."
},
"Carlo": {
"imports": ["carlo"],
"technologies": ["Desktop applications"],
"description": "Carlo provides Node applications with Google Chrome rendering capabilities, communicates with the locally-installed browser instance using the Puppeteer project, and implements a remote call infrastructure for communication between Node and the browser."
},
"Chai": {
"imports": ["chai"],
"technologies": ["Testing"],
"description": "Chai is a BDD / TDD assertion library for Node.js and the browser.",
"image": "https://www.chaijs.com/img/chai-logo.png"
},
"ChartJS": {
"imports": ["chart.js"],
"technologies": ["Frontend", "Data Visualization"],
"description": "A simple yet flexible Javascript charting library for Designers and Developers.",
"image": "https://www.chartjs.org/media/logo-title.svg"
},
"Cypress": {
"imports": ["cypress"],
"technologies": ["Testing"],
"description": "Cypress is a Javascript End to End testing framework"
},
"D3": {
"imports": ["d3"],
"technologies": ["Frontend", "Data Visualization"],
"description": "D3 (or D3.js) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML DOM manipulation.",
"image": "https://d3js.org/logo.svg"
},
"DevExtreme": {
"imports": [
"devextreme",
"devextreme-angular",
"devextreme-react",
"devextreme-vue"
],
"technologies": ["Frontend"],
"description": "JavaScript Component Suite for Responsive Web Development"
},
"Effector": {
"imports": ["effector"],
"technologies": ["Web Development", "SPA"],
"description": "Effective multi-store state manager for Javascript apps"
},
"Electron": {
"imports": ["electron"],
"technologies": ["Desktop applications"],
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS"
},
"Enzyme": {
"imports": ["enzyme", "enzyme/shallow"],
"technologies": ["Testing"],
"description": "Enzyme is a JavaScript Testing utility for React that makes it easier to test your React Components' output"
},
"ExpressJS": {
"imports": ["express"],
"technologies": ["Web Development", "JavaScript Frameworks", "Backend"],
"description": "Express is a minimal Node.js framework for web.",
"image": "https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/express/express.png"
},
"Fastify":{
"imports": ["fastify"],
"technologies": ["Web Development", "JavaScript Frameworks", "Backend"],
"description": "Fastify is a web framework highly focused on providing the best developer experience with the least overhead and a powerful plugin architecture.",
"image": "https://avatars.githubusercontent.com/u/24939410"
},
"Flow": {
"imports": ["flowjs"],
"_comment": "This is a special keyword, see repo info extractor JavaScript parser",
"technologies": ["Web Development"],
"description": "Flow is a static type checker for JavaScript, it works in a similar way that a linter does."
},
"Framework7": {
"imports": ["framework7"],
"technologies": [
"Mobile applications",
"Desktop applications",
"Progressive Web Apps",
"CSS frameworks"
],
"description": "A free and open source framework to develop mobile, desktop or web apps with native look and feel"
},
"Gatsby": {
"imports": ["gatsby"],
"technologies": [
"Frontend",
"Web Development",
"SSG",
"JavaScript Frameworks"
],
"description": "A frameworks for creating static sites.",
"image": "https://i.imgur.com/namE7Sp.png"
},
"GraphQL": {
"imports": ["graphql-express", "graphql"],
"technologies": ["Web Development", "JavaScript Frameworks"],
"description": "A query language for your API",
"image": "https://uploads.getpop.org/wp-content/uploads/2019/07/graphql-480x480.png"
},
"Gulp": {
"imports": ["gulp"],
"technologies": ["Build tools"],
"description": "Gulp is an open-source JavaScript toolkit created by Eric Schoffstall used as a streaming build system in front-end web development."
},
"Hapi": {
"imports": ["@hapi/", "hapi"],
"technologies": ["Web Development", "JavaScript Frameworks", "Backend"],
"description": "Hapi is a simple, secure web framework for Node.js.",
"image": "https://raw.githubusercontent.com/hapijs/assets/master/images/hapi.png"
},
"HerbsJS": {
"imports": ["@herbsjs/herbs"],
"technologies": ["Backend", "JavaScript Frameworks", "Web Development"],
"description": "Herbs is an library for backend applications, allowing you to build your microservices in Node.js faster and future-proof.",
"image": "https://herbsjs.org/img/logo-herbsjs.svg"
},
"Holoviews": {
"imports": ["holoviews"],
"technologies": ["Scientific Computing", "Data Science", "Data Visualization"],
"description": "HoloViews is an open-source Python library for data analysis and visualization.",
"image": "https://holoviews.org/_static/logo_horizontal.png"
},
"Impress": {
"imports": ["impress"],
"technologies": ["Backend", "Private Cloud", "Application Server"],
"description": "Application Server for Node.js Private Cloud",
"image": "https://github.com/metarhia/Metarhia/blob/master/Logos/impress-with-text.svg"
},
"Ionic": {
"imports": ["@ionic/"],
"technologies": ["Mobile applications"],
"description": "Ionic is the app development platform for web developers"
},
"Jest": {
"imports": ["jest"],
"technologies": ["Testing"],
"description": "Jest is a delightful JavaScript Testing Framework with a focus on simplicity"
},
"KiwiJS": {
"imports": ["kiwi-js"],
"technologies": [
"Web Development",
"Mobile Development",
"Game Development"
],
"description": "Kiwi.js is a mobile first HTML5 and Javascript game engine supporting both Canvas and WebGL rendering.",
"image": "http://www.kiwijs.org/wp-content/themes/kiwijs/assets/logo.png"
},
"Koa": {
"imports": ["koa"],
"technologies": ["Web Development"],
"description": "Next generation web framework for Node.js",
"image": "https://raw.githubusercontent.com/koajs/koa/f3ede44ffa6b59dcdc4d94d1faaa223aa6c60a51/docs/logo.png"
},
"Material UI": {
"imports": ["@material-ui", "@mui"],
"technologies": ["Frontend"],
"description": "React components for faster and easier web development.",
"image": "https://mui.com/static/logo.png"
},
"MeteorJS": {
"imports": ["meteor"],
"technologies": ["Web Development", "SPA", "Full Stack"],
"description": "Meteor.js is a full stack framework. It means that you can control everything from the database to the UI with the same language and the same framework, and it is one of Meteor’s primary advantages.",
"image": "https://user-images.githubusercontent.com/841294/26841702-0902bbee-4af3-11e7-9805-0618da66a246.png"
},
"MikroORM": {
"imports": ["@mikro-orm/"],
"technologies": ["ORM", "NodeJS"],
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns",
"image": "https://user-images.githubusercontent.com/38690835/150596419-0b421fc6-7f5d-48a0-8b81-a59a5a6100a5.png"
},
"MobX": {
"imports": ["mobx"],
"technologies": ["Web Development", "SPA"],
"description": "MobX is a battle tested library that makes state management simple and scalable by transparently applying functional reactive programming (TFRP)"
},
"mongodb-core": {
"imports": ["mongodb-core"],
"technologies": ["Databases", "MongoDB"],
"description": "MongoDB core driver functionality aims to make the smallest viable driver api"
},
"mongoose": {
"imports": ["mongoose"],
"technologies": ["Databases", "MongoDB"],
"description": "MongoDB object modeling designed to work in an asynchronous environment."
},
"mysql": {
"imports": ["mysql"],
"technologies": ["Databases", "MySQL"],
"description": "A pure node.js JavaScript Client implementing the MySQL protocol."
},
"NativeScript": {
"imports": ["nativescript"],
"technologies": ["Mobile applications"],
"description": "Open source framework for building truly native mobile apps with Angular, Vue.js, TypeScript, or JavaScript."
},
"NativeScriptVue": {
"imports": ["nativescript-vue"],
"technologies": ["Mobile applications", "JavaScript Frameworks"],
"description": "Open source framework for building truly native mobile apps with Vue.js.",
"image": "https://art.nativescript-vue.org/NativeScript-Vue-White-Green.svg"
},
"Neo4j": {
"imports": ["neo4j", "neo4j-driver"],
"technologies": ["Java", "JavaScript", "Databases"],
"description": "Neo4j is a graph database management system developed by Neo4j, Inc.",
"image": "https://go.neo4j.com/rs/710-RRC-335/images/neo4j_logo_globe.png"
},
"NestJS": {
"imports": ["@nestjs/"],
"technologies": ["Web Development", "JavaScript Frameworks", "Backend"],
"description": "A progressive Node.js framework for building efficient, reliable and scalable server-side applications.",
"image": "https://i.imgur.com/jRdGBEk.png"
},
"NextJS": {
"imports": ["next"],
"technologies": [
"Web Development",
"SPA",
"Server Side Rendering",
"Server Side Generation"
],
"description": "Production grade React applications that scale. The world's leading companies use Next.js to build server-rendered applications, static websites, and more.",
"image": "https://camo.githubusercontent.com/0bbf728fe4c8b213f3723eaac321fbb30e68be19/68747470733a2f2f6173736574732e76657263656c2e636f6d2f696d6167652f75706c6f61642f76313533383336313039312f7265706f7369746f726965732f6e6578742d6a732f6e6578742d6a732e706e67"
},
"NgRx": {
"imports": ["@ngrx"],
"technologies": ["Web Development", "SPA"],
"description": "RxJS powered state management for Angular applications, inspired by Redux"
},
"node-mongodb-native": {
"imports": ["mongodb"],
"technologies": ["Databases", "MongoDB"],
"description": "The Official MongoDB Node.js Driver"
},
"node-postgres": {
"imports": ["pg"],
"technologies": ["Databases", "PostgreSQL"],
"description": "node-postgres is a collection of node.js modules for interfacing with your PostgreSQL database."
},
"NodeJS": {
"imports": [
"assert",
"async_hooks",
"buffer",
"child_process",
"cluster",
"crypto",
"diagnostics_channel",
"dns",
"events",
"fs",
"http",
"http2",
"https",
"inspector",
"module",
"net",
"os",
"path",
"perf_hooks",
"process",
"querystring",
"readline",
"stream",
"string_decoder",
"tls",
"trace_events",
"tty",
"udp",
"url",
"util",
"v8",
"vm",
"wasi",
"worker_threads",
"zlib"
],
"technologies": ["Frontend", "Backend"],
"description": "JavaScript runtime built on V8 engine and libuv",
"image": "https://nodejs.org/static/images/logos/nodejs-new-pantone-black.svg"
},
"Nullstack": {
"imports": ["nullstack"],
"technologies": [
"Frontend",
"Web Development",
"SPA",
"JavaScript Frameworks",
"Server Side Rendering",
"Backend"
],
"description": "Feature-driven full-stack javascript components",
"image": "https://raw.githubusercontent.com/nullstack/create-nullstack-app/master/src/template/public/icon-128x128.png"
},
"NuxtJS": {
"imports": ["nuxtjs", "@nuxt/"],
"technologies": ["Web Development", "SPA", "Server side rendering"],
"description": "Nuxt.js is a free and open source web application framework based on Vue.js, Node.js, Webpack and Babel.js.",
"image": "https://avatars.githubusercontent.com/u/23360933?s=200&v=4"
},
"Parcel": {
"imports": ["parcel"],
"technologies": ["Build tools"],
"description": "Blazing fast, zero configuration web application bundler."
},
"pg-promise": {
"imports": ["pg-promise"],
"technologies": ["Databases", "PostgreSQL"],
"description": "PostgreSQL interface for Node.js"
},
"pogi": {
"imports": ["pogi"],
"technologies": ["Databases", "PostgreSQL"],
"description": "Javascript library for PostgreSQL and node.js"
},
"Postgres.js": {
"imports": ["postgres"],
"technologies": ["Databases", "PostgreSQL"],
"description": "The Fastest full featured PostgreSQL client for Node.js"
},
"Proton Native": {
"imports": ["proton-native"],
"technologies": ["Desktop applications"],
"description": "Create native desktop applications through a React syntax, on all platforms"
},
"React Native": {
"imports": ["react-native"],
"technologies": ["Mobile applications"],
"description": "React Native combines the best parts of native development with React, a best-in-class JavaScript library for building user interfaces."
},
"ReactJS": {
"imports": ["react", "react-dom"],
"technologies": [
"Frontend",
"Web Development",
"SPA",
"JavaScript Frameworks"
],
"description": "A JavaScript library for building user interfaces",
"image": "https://cdn4.iconfinder.com/data/icons/logos-3/600/React.js_logo-512.png"
},
"Redux": {
"imports": ["redux", "@reduxjs"],
"technologies": ["Web Development"],
"description": "A predictable state container for JavaScript apps."
},
"Redux Saga": {
"imports": ["redux-saga"],
"technologies": ["Web Development", "Frontend"],
"description": "An alternative side effect model for Redux apps."
},
"Remix": {
"imports": ["remix", "@remix-run/"],
"technologies": [
"Web Development",
"Server Side Rendering",
"Server Side Generation",
"JavaScript Frameworks"
],
"description": "Full stack web framework.",
"image": "https://avatars.githubusercontent.com/u/64235328?s=200&v=4"
},
"Rollup": {
"imports": ["rollup"],