-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathtools.yaml
More file actions
7117 lines (7117 loc) · 189 KB
/
tools.yaml
File metadata and controls
7117 lines (7117 loc) · 189 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: a127
description: a127
github: http://a127.io/
v2: true
language: "?"
category: "?"
uuid: 5c9b92f3-2004-4cc5-8367-2b28924167d0
- name: elide
description: elide
github: http://elide.io/
v2: true
language: "?"
category: "?"
uuid: e8ffc18e-30fc-4ffc-abbf-fbd2451c84c1
- name: SwaggerProvider
description: SwaggerProvider
github: http://fsprojects.github.io/SwaggerProvider/
v2: true
language: "?"
category: "?"
uuid: be40d54e-ef74-4998-9a79-8b2d32dbc97a
- name: swaggydoc
description: swaggydoc
github: http://grails.org/plugin/swaggydoc
v1: true
language: "?"
category: "?"
uuid: 5500aa36-6cb9-4319-8718-926587fad315
- name: gRPC
description: generate a REST gateway and swagger definition from a gRPC protobuf
definition
github: http://grpc.io/
v2: true
language: "?"
category: "?"
uuid: cf1f76ab-c454-4b2c-ac5a-209d2f578e03
- name: servant-swagger
description: servant-swagger
github: http://hackage.haskell.org/package/servant-swagger
v2: true
language: "?"
category: "?"
uuid: ecc9f4a3-a428-4d69-b25f-9ce32c952191
- name: swagger2
description: swagger2
github: http://hackage.haskell.org/package/swagger2
v2: true
language: "?"
category: "?"
uuid: 9551765f-acb8-444f-acdd-14b15d896ca8
- name: Hapi
description: A Hapi plugin that automatically creates Swagger documentation AND
validates request/response parameters using the JSON Schema spec.
github: http://hapijs.com/
v1: true
language: "?"
category: "?"
uuid: 116d95f1-b25f-4879-bcd1-daa87e7c8c0f
- name: jooby apps
description: Export jooby apps to Swagger Spec 2.0.
github: http://jooby.org/
v2: true
language: "?"
category: "?"
uuid: 1cfd1dfe-8214-4f30-a795-f0e04623761c
- name: jooby-swagger
description: jooby-swagger
github: http://jooby.org/doc/swagger
v2: true
language: "?"
category: "?"
uuid: f408a19e-cce7-4cc4-a2b7-9ba669a78373
- name: JSON-API
description: A framework for building JSON-API web services with generated
Swagger documentation.
github: http://jsonapi.org/
v2: true
language: "?"
category: "?"
uuid: 435a5909-b762-4226-9fad-af9f2ae51b23
- name: swagger-maven-plugin
description: swagger-maven-plugin
github: http://kongchen.github.io/swagger-maven-plugin/
v2: true
language: "?"
category: "?"
uuid: 7a6ce0d0-9506-401a-9e71-5695e6fe62c6
- name: Mojolicious
description: Generates Mojolicious routes and input/output validation rules.
github: http://mojolicio.us/
v2: true
language: "?"
category: "?"
uuid: 4d44bacc-88fd-4c70-9904-8a6fc31216d8
- name: NSwag
description: NSwag
github: http://nswag.org/
v2: true
language: "?"
category: "?"
uuid: a6c21c17-0550-4c2a-bf63-6337cad0061a
- name: restlet-framework
description: restlet-framework
github: http://restlet.com/technical-resources/restlet-framework/guide/2.3/extensions/swagger
v2: true
language: "?"
category: "?"
uuid: fc60290b-195a-4c2b-9a3a-b8ef851668ae
- name: Sails.js
description: A Sails.js plugin that generates a Swagger (v2.0) document from
your application Models, Controllers, and Routes. Also see
swagger.balderdash.io for a Sails-themed Swagger UI.
github: http://sailsjs.org/
v2: true
language: "?"
category: "?"
uuid: 98219221-a44f-4781-aa6a-b341711d08f3
- name: Serverless
description: |-
A Serverless plugin that
generates serverless configuration, api gateway events, and basic
handler stub functions from a Swagger specification.
github: http://serverless.com/
v2: true
language: "?"
category: "?"
uuid: 0958da3a-3c62-469c-a301-4510fc543992
- name: Fintrospect
description: Fintrospect
github: http://www.fintrospect.io/
v2: true
language: "?"
category: "?"
uuid: 94a503b3-f155-4fd1-93e7-992e8f6128f2
- name: Postman
description: Creates a Postman collection from live Swagger documentation
github: http://www.getpostman.com/
v1: true
language: "?"
category: "?"
uuid: 41d14991-9ca3-4baf-bff3-3236a0a114aa
- name: Phoenix
description: PhoenixSwagger is the library that provides Swagger integration to
the Phoenix web framework. It generates Swagger specification for Phoenix
controllers and validates the requests.
github: http://www.phoenixframework.org/
v2: true
language: "?"
category: "?"
uuid: c84d28fb-ee33-46ab-bbe5-691e97481d17
- name: playframework
description: Creates swagger docs from easily readable ascii text placed in the
code. Depends on playframework, but may also be used in other frameworks.
github: http://www.playframework.com/
v1: true
language: "?"
category: "?"
uuid: a58080f9-b32a-40a4-8c4d-1d952d4b46d0
- name: Scalatra
description: Scalatra
github: http://www.scalatra.org/
v1: true
language: "?"
category: "?"
uuid: 3cf36e7a-1f47-4f4a-bd9c-babbc7d94b45
- name: Swagger Guide
description: see the Swagger Guide
github: http://www.scalatra.org/2.2/guides/swagger.html
v1: true
language: "?"
category: "?"
uuid: 46f992d4-0fd7-4c95-885c-049fd8243086
- name: Atom/linter-swagger
category: editors
language: JavaScript
github: https://atom.io/packages/linter-swagger
license: MIT
description: This plugin for Atom Linter will lint Swagger 2.0 specifications,
both JSON and YAML using swagger-parser node package.
v2: true
uuid: 258ede80-8d7d-493e-97a2-936111c3cf86
- name: swagger-request-validator
description: swagger-request-validator
github: https://bitbucket.org/atlassian/swagger-request-validator
v2: true
language: "?"
category: "?"
uuid: 9690d79d-ef5f-4140-a00b-77478c4ef5ba
- name: Sashay
description: Sashay
github: https://bitbucket.org/seanerussell/sashay
v1: true
language: "?"
category: "?"
uuid: c4614bfa-e7ce-4704-a9a3-74f9acb68583
- name: lua-Spore
description: lua-Spore
github: https://fperrad.github.io/lua-Spore/swagger/
v2: true
language: "?"
category: "?"
uuid: 34a3a584-d51f-4dd5-aea5-3f6cf3ceda31
- name: vscode-openapi
category: editors
language: TypeScript
link: https://marketplace.visualstudio.com/items?itemName=42Crunch.vscode-openapi
description: VisualStudio Code OpenAPI tools
v2: true
v3: true
github: https://github.com/42Crunch/vscode-openapi
archived: false
stars: 372
watch: 11
forks: 43
updated: 2026-04-01T14:54:55Z
issues: 54
owner: 42Crunch
logo: https://avatars.githubusercontent.com/u/25365245?v=4
license: AGPL-3.0
downloads: 0
uuid: 87468ee0-ea11-422d-a658-369ab85998f1
- name: swagger-cli
category: parsers
github: https://github.com/APIDevTools/swagger-cli
language: JavaScript
description: Swagger 2.0 and OpenAPI 3.0 command-line tool
v2: true
archived: true
stars: 518
watch: 11
forks: 68
updated: 2026-03-31T01:48:06Z
issues: 51
license: MIT
owner: APIDevTools
logo: https://avatars.githubusercontent.com/u/43750074?v=4
downloads: 4688601
downloadStr: 4.69M
uuid: d461b81f-9095-43ab-9add-455e3497e463
- name: swagger-express-middleware
description: Swagger 2.0 middlware and mocks for Express.js
github: https://github.com/APIDevTools/swagger-express-middleware
v2: true
language: JavaScript
category: "?"
archived: true
stars: 577
watch: 20
updated: 2025-11-07T08:14:30Z
issues: 1
forks: 193
license: MIT
owner: APIDevTools
logo: https://avatars.githubusercontent.com/u/43750074?v=4
downloads: 499199
downloadStr: 499.2K
uuid: 864726b8-4a83-45ec-8c7e-430d07e7b8ad
- name: swagger-parser
description: Swagger 2.0 and OpenAPI 3.0 parser/validator
github: https://github.com/APIDevTools/swagger-parser
v2: true
language: JavaScript
category: "?"
archived: false
stars: 1193
watch: 19
updated: 2026-04-03T12:03:20Z
issues: 61
forks: 166
license: MIT
owner: APIDevTools
logo: https://avatars.githubusercontent.com/u/43750074?v=4
downloads: 31540864
downloadStr: 31.54M
uuid: 8b6626c3-80e1-42f0-bc12-6cdb15b6750a
- github: https://github.com/APIs-guru/awesome-openapi3
v3: true
category: documentation
name: awesome-openapi3
description: 😎 A list of awesome projects related to OpenAPI 3.0.x, curated by
the community
language: JavaScript
archived: false
stars: 697
watch: 31
forks: 65
updated: 2026-04-03T18:46:11Z
issues: 17
license: BSD-3-Clause
owner: APIs-guru
logo: https://avatars.githubusercontent.com/u/10975548?v=4
downloads: 0
uuid: 33dee28c-6f3f-4223-9a4e-3f305ea0556d
- github: https://github.com/APIs-guru/aws2openapi
v3: true
category: unclassified
name: aws2openapi
description: Amazon Web Services API description to OpenAPI 3.0 definition
language: JavaScript
archived: false
stars: 62
watch: 3
forks: 12
updated: 2026-04-02T06:07:11Z
issues: 17
owner: APIs-guru
logo: https://avatars.githubusercontent.com/u/10975548?v=4
license: MIT
downloads: 0
uuid: ad01ab89-9701-4dca-847e-13074adae171
- github: https://github.com/APIs-guru/openapi-directory
v3: true
category: unclassified
name: openapi-directory
description: 🌐 Wikipedia for Web APIs. Directory of REST API definitions in
OpenAPI 2.0/3.x format
language: Unknown
archived: false
stars: 4412
watch: 107
forks: 675
updated: 2026-04-03T14:51:58Z
issues: 1166
owner: APIs-guru
logo: https://avatars.githubusercontent.com/u/10975548?v=4
license: CC0-1.0
downloads: 0
downloadStr: 10.61K
uuid: 5dcccb2d-92b4-44b1-87e4-f7434fee8f91
- name: apicurio-studio
category: editors
language: TypeScript
link: http://www.apicur.io/
github: https://github.com/Apicurio/apicurio-studio
demo: https://studio.apicur.io/
description: Open Source API Design
v2: true
v3: true
archived: true
stars: 1062
watch: 36
forks: 517
updated: 2026-03-30T12:49:34Z
issues: 368
license: Apache-2.0
owner: Apicurio
logo: https://avatars.githubusercontent.com/u/28107283?v=4
downloads: 0
uuid: d9e178fc-c043-4fb2-bd58-b407e7f47593
- name: oai-ts-core
category: parsers
github: https://github.com/Apicurio/oai-ts-core
description: Core typescript library to read and manipulate OpenAPI
specification definitions.
language: TypeScript
v3: true
archived: true
stars: 53
watch: 3
forks: 9
updated: 2026-03-15T06:08:31Z
issues: 0
license: Apache-2.0
owner: Apicurio
logo: https://avatars.githubusercontent.com/u/28107283?v=4
downloads: 9829
downloadStr: 9.83K
uuid: 85313bdb-1ee4-4dd2-87ab-5c958964a2c4
- name: autorest
description: OpenAPI (f.k.a Swagger) Specification code generator. Supports C#,
PowerShell, Go, Java, Node.js, TypeScript, Python
github: https://github.com/Azure/autorest
v2: true
language: TypeSpec
category: "?"
archived: false
stars: 4801
watch: 962
updated: 2026-04-03T20:34:02Z
issues: 47
forks: 737
license: MIT
owner: Azure
logo: https://avatars.githubusercontent.com/u/6844498?v=4
downloads: 0
downloadStr: 1.9M
uuid: ccc03b67-8108-42d6-ad32-8b9ddbb81999
- github: https://github.com/BRIKEV/express-jsdoc-swagger
v3: true
category: unclassified
uuid: 4face4aa-c923-4829-9871-2b00d0b015c9
name: express-jsdoc-swagger
description: Swagger OpenAPI 3.x generator
language: JavaScript
archived: false
stars: 224
watch: 3
forks: 32
updated: 2026-01-22T20:03:25Z
issues: 49
owner: BRIKEV
logo: https://avatars.githubusercontent.com/u/59850028?v=4
license: MIT
downloads: 313976
downloadStr: 313.98K
- github: https://github.com/Bankdata/gradle-swagger-plugin
v3: true
category: sdk
name: gradle-swagger-plugin
description: Gradle plugin for generating OpenAPI specification using Swagger
language: Groovy
archived: false
stars: 3
watch: 2
forks: 4
updated: 2020-01-25T22:22:18Z
issues: 0
license: MIT
owner: Bankdata
logo: https://avatars.githubusercontent.com/u/29634372?v=4
unsure: true
downloads: 0
uuid: c79f4a4f-53ea-4979-bfd2-c7623feba79c
- name: blueoak-server
description: express.js-based, swagger-matic, server runtime
github: https://github.com/BlueOakJS/blueoak-server
v2: true
language: JavaScript
category: "?"
archived: false
stars: 140
watch: 37
updated: 2025-01-03T21:19:34Z
issues: 29
forks: 24
license: MIT
owner: BlueOakJS
logo: https://avatars.githubusercontent.com/u/17052968?v=4
downloads: 2526
downloadStr: 2.53K
uuid: edf3f1f1-65c2-4f14-b16b-ec2df46563a0
- name: hippie-swagger
description: API testing tool with automatic swagger assertions
github: https://github.com/CacheControl/hippie-swagger
v2: true
language: JavaScript
category: "?"
archived: false
stars: 183
watch: 10
updated: 2025-08-30T23:19:34Z
issues: 10
forks: 24
license: ISC
owner: CacheControl
logo: https://avatars.githubusercontent.com/u/242797?v=4
downloads: 30049
downloadStr: 30.05K
uuid: 69df089c-111b-438c-9230-2ca7230691d4
- github: https://github.com/Cornutum/tcases
v3: true
category: unclassified
name: tcases
description: A model-based test case generator
language: Java
archived: false
stars: 237
watch: 16
forks: 56
updated: 2026-03-10T15:56:31Z
issues: 5
owner: Cornutum
logo: https://avatars.githubusercontent.com/u/11477145?v=4
license: MIT
downloads: 0
uuid: c79d5a86-84f9-4fd9-9fb3-4dc2bb9a8b9b
- name: fubumvc
description: A front-controller style MVC framework for .NET
github: https://github.com/DarthFubuMVC/fubumvc
v1: true
language: C#
category: "?"
archived: false
stars: 425
watch: 28
updated: 2025-09-09T04:52:23Z
issues: 90
forks: 151
license: ""
owner: DarthFubuMVC
logo: https://avatars.githubusercontent.com/u/179202?v=4
downloads: 0
uuid: a1f4192a-32e8-4fe4-9bc5-149e8385bd13
- github: https://github.com/Dzoukr/OpenAPIParser
v3: true
category: parsers
name: OpenAPIParser
description: Simple Open API F# Parser
language: F#
archived: false
stars: 11
watch: 4
forks: 2
updated: 2020-11-12T16:00:37Z
issues: 1
license: MIT
owner: Dzoukr
logo: https://avatars.githubusercontent.com/u/851307?v=4
unsure: true
downloads: 0
uuid: bfc63a2b-f2ee-40bc-978d-2d4be2efcc68
- name: swagger
description: Eiffel library for Swagger
github: https://github.com/EiffelWebFramework/swagger
v1: true
language: Eiffel
category: "?"
archived: false
stars: 4
watch: 3
updated: 2022-06-21T13:16:47Z
issues: 0
forks: 0
owner: EiffelWebFramework
logo: https://avatars.githubusercontent.com/u/1617859?v=4
downloads: 0
uuid: 3ef12eab-7cba-42b9-aac4-32cd2b895174
- github: https://github.com/ErikWittern/openapi-snippet
v3: true
category: unclassified
name: openapi-snippet
description: Generates code snippets for given Swagger / Open API documents
language: JavaScript
archived: false
stars: 128
watch: 4
forks: 66
updated: 2026-01-01T17:57:57Z
issues: 37
owner: ErikWittern
logo: https://avatars.githubusercontent.com/u/1745998?v=4
license: MIT
downloads: 706490
downloadStr: 706.49K
uuid: 5832e85b-9d3c-486e-bac8-63f95d66bc5c
- github: https://github.com/Frameio/rolodex
v3: true
category: unclassified
name: rolodex
description: 📇API Documentation Generator for Phoenix
language: Elixir
archived: false
stars: 38
watch: 19
forks: 2
updated: 2026-02-03T18:15:03Z
issues: 3
owner: Frameio
logo: https://avatars.githubusercontent.com/u/8882715?v=4
license: MIT
downloads: 0
uuid: 4dcf211f-03fb-4d4c-a0b6-73f159d76eff
- github: https://github.com/GeniusesGroup/memar-go
v3: true
category: frameworks
name: memar-go
description: Memar framework (to developing software) port in the GO programming language
language: Go
archived: false
stars: 44
watch: 3
forks: 5
updated: 2026-01-29T12:09:15Z
issues: 8
license: Apache-2.0
owner: GeniusesGroup
logo: https://avatars.githubusercontent.com/u/16743416?v=4
unsure: true
downloads: 0
uuid: c2ba54ca-8508-4db9-b4d9-02d7efe7c971
- github: https://github.com/Himenon/openapi-typescript-code-generator
v3: true
category: unclassified
uuid: 644ac5af-d143-4fac-bde1-4fe766b2e0d0
name: openapi-typescript-code-generator
description: TypeScript code generator via OpenAPI scheme.
language: TypeScript
archived: false
stars: 207
watch: 3
forks: 16
updated: 2026-01-23T08:00:34Z
issues: 5
owner: Himenon
logo: https://avatars.githubusercontent.com/u/6715229?v=4
license: MIT
downloads: 0
- name: fubumvc-swagger
description: "FubuMVC convention for creating API documentation for your content
negotiation enabled actions "
github: https://github.com/KevM/fubumvc-swagger
v1: true
language: C#
category: "?"
archived: false
stars: 12
watch: 3
updated: 2018-02-09T18:56:54Z
issues: 2
forks: 6
license: ""
owner: KevM
logo: https://avatars.githubusercontent.com/u/1565?v=4
downloads: 0
uuid: f26832d8-99b4-4ad5-b5b6-1a638ed004d7
- name: api-spec-converter
description: Convert API descriptions between popular formats such as
OpenAPI(fka Swagger), RAML, API Blueprint, WADL, etc.
github: https://github.com/LucyBot-Inc/api-spec-converter
v2: true
language: JavaScript
category: "?"
archived: false
stars: 1173
watch: 22
updated: 2026-04-02T05:10:53Z
issues: 106
forks: 190
license: MIT
owner: LucyBot-Inc
logo: https://avatars.githubusercontent.com/u/26313641?v=4
downloads: 712016
downloadStr: 712.02K
uuid: bcf24fcc-360c-4175-bd84-13ac17bc02d0
- name: Restler
description: Zero-boilerplate REST API framework for PHP 8+. Auto-generates
routes, docs, validation.
github: https://github.com/Luracast/Restler
v1: true
language: PHP
category: "?"
archived: false
stars: 1374
watch: 82
updated: 2026-03-19T16:31:18Z
issues: 35
forks: 310
owner: Luracast
logo: https://avatars.githubusercontent.com/u/236217?v=4
downloads: 0
downloadStr: 1.93M
uuid: 4e5d7b8b-a977-42eb-a6ab-709ed6e265e3
license: LGPL-2.1
- name: SwaggerAssertions
description: Assert your API requests and responses match with your swagger definition
github: https://github.com/Maks3w/SwaggerAssertions
v2: true
language: PHP
category: "?"
archived: false
stars: 138
watch: 7
updated: 2025-10-16T12:59:48Z
issues: 7
forks: 27
license: ""
owner: Maks3w
logo: https://avatars.githubusercontent.com/u/1301698?v=4
downloads: 0
uuid: 9ee3138a-2de5-4d72-af61-ff4a79973a18
- name: oas-kit
category: converters
language: JavaScript
demo: https://mermade.org.uk/openapi-converter
github: https://github.com/Mermade/oas-kit
description: Convert Swagger 2.0 definitions to OpenAPI 3.0 and resolve/validate/lint
v2: true
v3: true
archived: false
stars: 743
watch: 13
forks: 119
updated: 2026-03-25T19:27:32Z
issues: 45
license: BSD-3-Clause
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 0
uuid: e98721e7-93a1-49c4-9e5a-b117bce9a3c9
- github: https://github.com/Mermade/openapi-codegen
v3: true
category: sdk
name: openapi-codegen
description: OpenAPI 3.0 CodeGen plus Node.js minus the Java and emojis
language: JavaScript
archived: false
stars: 295
watch: 9
forks: 45
updated: 2025-12-13T13:01:53Z
issues: 25
license: Apache-2.0
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 16884
downloadStr: 16.88K
uuid: 918a2e7f-f825-4223-aff8-74e4760010cc
- name: openapi-extract
category: miscellaneous
language: JavaScript
description: Extract single paths/operations from OpenAPI definitions
github: https://github.com/Mermade/openapi-extract
v2: true
v3: true
archived: false
stars: 34
watch: 2
forks: 9
updated: 2026-03-04T12:59:20Z
issues: 7
license: BSD-3-Clause
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 11934
downloadStr: 11.93K
uuid: 612745d0-a40a-4a74-b242-91cf49fb9353
- name: openapi-filter
category: miscellaneous
language: JavaScript
description: Filter internal paths, operations, parameters, schemas etc from
OpenAPI/Swagger/AsyncAPI definitions
github: https://github.com/Mermade/openapi-filter
v2: true
v3: true
archived: false
stars: 169
watch: 3
forks: 34
updated: 2026-03-25T18:22:59Z
issues: 9
license: BSD-3-Clause
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 187314
downloadStr: 187.31K
uuid: 8068538e-ab2e-4ac9-acf0-8ec988fcbb40
- name: openapi-gui
category: editors
language: JavaScript
link: https://mermade.github.io/openapi-gui
github: https://github.com/Mermade/openapi-gui
description: GUI / visual editor for creating and editing OpenAPI / Swagger definitions
v2: true
v3: true
archived: false
stars: 1460
watch: 41
forks: 170
updated: 2025-09-01T14:29:28Z
issues: 17
license: MIT
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 272
downloadStr: "272"
uuid: d6b51617-c257-413d-94f9-c2c5436fd5a6
- github: https://github.com/Mermade/openapi-lint-vscode
v3: true
category: editors
name: openapi-lint-vscode
description: OpenAPI 2.0/3.0.x intellisense, validator, linter, converter and
resolver extension for Visual Studio Code
language: JavaScript
archived: false
stars: 52
watch: 4
forks: 9
updated: 2025-07-06T20:31:52Z
issues: 12
license: BSD-3-Clause
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 0
uuid: 767704d4-3a07-4d4f-bc9b-068ead3ce54f
- github: https://github.com/Mermade/openapi-webconverter
v3: true
category: converters
name: openapi-webconverter
description: Mermade Swagger 2.0 to OpenAPI 3.0.0 converter front-end
language: JavaScript
archived: false
stars: 14
watch: 3
forks: 9
updated: 2023-09-20T16:11:59Z
issues: 5
license: BSD-3-Clause
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 1084
downloadStr: 1.08K
uuid: 91439d6b-5adc-41c2-8742-b9fb1b248772
- github: https://github.com/Mermade/openapi3-examples
v3: true
category: documentation
name: openapi3-examples
description: Passing and failing test cases for OpenAPI 3.x validators
language: Unknown
archived: false
stars: 26
watch: 6
forks: 17
updated: 2024-03-12T11:46:10Z
issues: 0
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 0
uuid: 9eaf2ac1-77dd-470e-9573-2b9d88ecac8e
license: Apache-2.0
- github: https://github.com/Mermade/swaggerplusplus
v3: true
category: documentation
name: swaggerplusplus
description: A proposal for transitioning between Swagger 2.0 and OpenAPI 3.0.x
language: Unknown
archived: false
stars: 6
watch: 5
forks: 1
updated: 2024-03-14T14:21:42Z
issues: 0
license: Unlicense
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 0
uuid: 56ca6d03-36e6-452d-83f4-3f9128231b97
- name: widdershins
category: documentation
demo: https://mermade.github.io/shins
github: https://github.com/Mermade/widdershins
language: JavaScript
description: OpenAPI / Swagger, AsyncAPI & Semoasa definitions to (re)Slate
compatible markdown
v2: true
v3: true
archived: false
stars: 1275
watch: 17
forks: 299
updated: 2023-04-16T04:57:42Z
issues: 81
license: MIT
owner: Mermade
logo: https://avatars.githubusercontent.com/u/15950345?v=4
downloads: 526505
downloadStr: 526.51K
uuid: 4d40960b-23a1-4e76-bbe6-f41a5e32faf2
- name: spec-synthase
description: Spec-synthase is a tool to help deal with big swagger files, by
building the swagger specification files from little spec files.
github: https://github.com/MicroarrayTecnologia/spec-synthase
v2: true
language: Python
category: "?"
archived: false
stars: 7
watch: 2
updated: 2020-01-19T10:39:46Z
issues: 28
forks: 2
license: MPL-2.0
owner: MicroarrayTecnologia
logo: https://avatars.githubusercontent.com/u/22525281?v=4
downloads: 0
uuid: 2205a720-fca9-49f6-be44-e2547d4676ff
- name: oas_parser
description: An open source Open API Spec 3 Definition Parser
github: https://github.com/Nexmo/oas_parser
v2: true
language: Ruby
category: "?"
archived: false
stars: 52
watch: 20
updated: 2022-11-30T13:45:20Z
issues: 7
forks: 14
license: MIT
owner: Nexmo
logo: https://avatars.githubusercontent.com/u/551057?v=4
downloads: 0
uuid: a49776b0-4da5-48a8-b75b-a9bf69fdd70d
- github: https://github.com/OpenAPITools/openapi-diff
v3: true
category: unclassified
uuid: 3fad29fe-c1a7-4e2b-91ef-7e3b275d31df
name: openapi-diff
description: Utility for comparing two OpenAPI specifications.
language: Java
archived: false
stars: 1046
watch: 20
forks: 181
updated: 2026-02-10T09:24:59Z
issues: 85
owner: OpenAPITools
logo: https://avatars.githubusercontent.com/u/37325267?v=4
license: Apache-2.0
downloads: 0
- github: https://github.com/OpenAPITools/openapi-generator
v3: true
category: sdk
name: openapi-generator
description: OpenAPI Generator allows generation of API client libraries (SDK
generation), server stubs, documentation and configuration automatically
given an OpenAPI Spec (v2, v3)
language: Java
archived: false
stars: 25794
watch: 223
forks: 7384
updated: 2026-02-11T16:44:13Z
issues: 5576
license: Apache-2.0
owner: OpenAPITools
logo: https://avatars.githubusercontent.com/u/37325267?v=4
downloads: 0
uuid: aebf224d-85fd-42bc-adeb-37c3ceb835c4
- github: https://github.com/OpenAPITools/openapi-generator-cli
v3: true
category: unclassified
name: openapi-generator-cli
description: A node package wrapper for https://github.com/OpenAPITools/openapi-generator
language: TypeScript
archived: false
stars: 1529
watch: 19
forks: 156
updated: 2025-02-04T13:17:11Z
issues: 63
owner: OpenAPITools
logo: https://avatars.githubusercontent.com/u/37325267?v=4
license: Apache-2.0
downloads: 0
uuid: 4210522a-a2ef-4f77-a265-47bdaf4930d1
- github: https://github.com/OpenAPITools/openapi-petstore
v3: true
category: sdk
name: openapi-petstore
description: The pet store sample
language: Java
archived: false
stars: 41
watch: 5
forks: 42
updated: 2023-03-11T06:10:08Z
issues: 6
license: Apache-2.0
owner: OpenAPITools
logo: https://avatars.githubusercontent.com/u/37325267?v=4
downloads: 0
uuid: 027331d6-f315-4c7e-8e4c-1bf1f94fba01
- github: https://github.com/Orange-OpenSource/angular-swagger-ui
v3: true
category: documentation
name: angular-swagger-ui
description: An angularJS implementation of Swagger UI
language: JavaScript
archived: true
stars: 134
watch: 22
forks: 76
updated: 2023-01-27T20:02:01Z
issues: 8
license: MIT
owner: Orange-OpenSource
logo: https://avatars.githubusercontent.com/u/1506386?v=4
downloads: 34300
downloadStr: 34.3K
uuid: 8e629435-b23e-48a5-a74b-1abbea17a351
- github: https://github.com/OverSpeedIO/koa2-oas3
v3: true
category: parsers
name: koa2-oas3
description: Koa2 OpenAPI 3 request validation middleware.
language: JavaScript
archived: false
stars: 4
watch: 1
forks: 1
updated: 2019-01-27T12:36:17Z
issues: 0
owner: OverSpeedIO
logo: https://avatars2.githubusercontent.com/u/34144854?v=4
unsure: true
downloads: 0
uuid: 6ca155af-d67c-47ea-bd35-5cb7ee1b32f4
- github: https://github.com/Pylons/pyramid_openapi3
v3: true
category: unclassified