-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathLibraries.awesome.kts
2424 lines (2423 loc) · 88 KB
/
Libraries.awesome.kts
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
category("Libraries/Frameworks") {
subcategory("Web") {
link {
github = "ktorio/ktor"
href = "https://ktor.io/"
desc = "Web backend framework for Kotlin. Easy to use, fun and asynchronous."
setPlatforms(JVM, ANDROID, NATIVE, IOS)
setTags("web")
awesome()
}
link {
github = "Flaxoos/flax-ktor-plugins"
href = "https://github.com/Flaxoos/flax-ktor-plugins"
desc = "A Ktor plugins repository for servers and clients, including a kafka client plugin, circuit breaker and more"
setPlatforms(JVM, ANDROID, NATIVE, IOS)
setTags("web", "mobile", "ktor", "plugins", "server", "client", "kafka", "rate-limiting", "circuit-breaker")
}
link {
github = "darkredz/zeko-restapi-framework"
setTags("web", "http", "rest", "vert.x", "swagger", "openapi", "microframework", "rest-api", "reactive", "mvc")
}
link {
github = "TinyMission/kara"
desc = "Web framework written in Kotlin."
setTags("web")
}
link {
github = "http4k/http4k"
desc = "Toolkit for serving and consuming HTTP services in a functional and consistent way."
href = "https://www.http4k.org"
setTags("web", "http", "http client", "jetty", "netty", "undertow")
awesome()
}
link {
github = "jean79/yested"
desc = "A Kotlin framework for building web applications in Javascript."
setTags("web")
}
link {
github = "hhariri/wasabi"
desc = "An HTTP Framework built with Kotlin for the JVM."
setTags("web")
}
link {
github = "Kotlin/kotlinx.html"
desc = "Kotlin DSL for HTML."
setTags("web", "html")
awesome()
}
link {
github = "allangomes/kotlinwind.css"
desc = "Kotlin DSL for CSS based on Tailwind."
setTags("web", "html", "tailwind", "css")
awesome()
}
link {
github = "celtric/kotlin-html"
desc = "A library to generate HTML in Kotlin."
setPlatforms(JVM)
setTags("html-generator", "template-engine")
}
link {
github = "MarioAriasC/KotlinPrimavera"
desc = "Spring support libraries for Kotlin."
setTags("spring")
}
link {
github = "kohesive/kovert"
desc = "An invisible, super easy and powerful REST and Web framework over Vert.x or Undertow."
setTags("web", "http", "rest", "vert.x", "undertow")
}
link {
github = "aPureBase/KGraphQL"
desc = "A GraphQL implementation written in Kotlin"
setTags("graphql", "web")
}
link {
github = "taskworld/kraph"
desc = "GraphQL request string builder written in Kotlin"
setTags("graphql", "builder")
}
link {
github = "sepatel/tekniq"
desc = "Full-feature HTTP DSL Framework, HTTP Client, JDBC DSL, Loading Cache and Configuration"
setTags("web", "jdbc", "http client", "spark java", "cache")
}
link {
github = "vert-x3/vertx-lang-kotlin"
desc = "This module provides Kotlin language bindings including DSL and extension functions for vert.x 3"
setTags("web", "vert.x")
}
link {
github = "jooby-project/jooby"
desc = "Modular micro web framework for Java and Kotlin"
setTags("web", "jooby", "microframework", "http", "rest")
}
link {
github = "gimlet2/kottpd"
desc = "REST framework in pure Kotlin, inspired by spark-java"
setTags("web", "rest", "http")
}
link {
github = "kwebio/kweb-core"
desc = "Build rich live-updating web apps in pure server-side Kotlin."
setTags("web", "rest", "http", "fullstack")
}
link {
github = "brianmadden/krawler"
desc = "A web crawling framework written in Kotlin"
setTags("crawler4j", "web-crawler", "webcrawler", "link-checker")
}
link {
github = "mvysny/vaadin-on-kotlin"
desc = "A simple way to write full-stack database-backed component-oriented web apps"
setTags("web", "fullstack", "vaadin")
}
link {
github = "perwendel/spark-kotlin"
desc = "A DSL in idiomatic Kotlin for the Spark web framework."
setTags("web", "rest", "http")
}
link {
github = "hexagontk/hexagon"
href = "https://hexagontk.com"
desc = "A Microservices toolkit that takes care of HTTP, serialization and templates."
setTags("web", "rest", "http")
}
link {
github = "danneu/kog"
desc = "A web framework focused on simplicity, middleware, and functional composition"
setTags("web", "http", "rest", "jetty", "websockets")
}
link {
github = "tipsy/javalin"
desc = "A Simple REST API Library for Java/Kotlin."
setTags("kotlin", "rest-api", "web-framework", "microservice", "servlet", "jetty")
}
link {
github = "laviua/komock"
desc = "HTTP/Consul/SMTP/Spring Config mocker framework written in Kotlin"
setTags("kotlin", "http", "consul", "microservice", "mock", "jetty", "netty", "smtp", "ssl")
}
link {
github = "hypercube1024/firefly"
desc = "An asynchronous web framework for rapid development of high-performance web application."
setTags("kotlin", "web", "http", "tcp", "ssl", "reactive")
}
link {
github = "phenax/h"
desc = "HTML templating library written in Kotlin"
setTags("kotlin", "http", "web", "html", "template")
}
link {
github = "bootique/bootique-kotlin"
desc = "Provides extension function and features for smooth development with Bootique and Kotlin."
setTags("kotlin", "web-framework", "undertow", "jetty")
setPlatforms(JVM)
}
link {
github = "SeunAdelekan/Kanary"
desc = "A micro webframework for Kotlin"
setTags("web")
}
link {
github = "ExpediaDotCom/graphql-kotlin"
desc = "Code-only GraphQL schema generation for Kotlin"
setTags("graphql", "web")
}
link {
github = "moia-dev/lambda-kotlin-request-router"
desc = "A REST request routing layer for AWS lambda handlers written in Kotlin"
}
link {
github = "spypunk/sponge"
desc = "A website crawler and links downloader command line tool written in Kotlin"
}
link {
github = "alpas/alpas"
desc = "Kotlin web framework inspired by Laravel/Rails. Easy, elegant and productive."
}
link {
github = "jetbrains/kotless"
desc = "Kotlin serverless framework reducing the routine of serverless deployment."
setTags("web", "microservice", "serverless")
awesome()
}
link {
github = "jwstegemann/fritz2"
desc = "small lib to build reactive web-apps in pure Kotlin based on Flows"
setTags("web", "ui", "reactive", "coroutines", "html", "routing")
}
link {
github = "AurityLab/graphql-kotlin-toolkit"
desc = "GraphQL toolkit for Kotlin (includes code generator and spring boot integration)"
setTags("web", "graphql", "codegenerator", "spring")
}
link {
github = "apollographql/apollo-android"
desc = "Typesafe GraphQL client for the JVM and Kotlin native"
setTags("web", "graphql")
}
link {
github = "welvet/summer"
desc = "Lightweight Jetty/JDBC wrapper library inspired by SparkJava and MyBatis with DI and Testing support for Kotlin"
setTags("jdbc", "web", "di")
setPlatforms(JVM)
}
link {
github = "ButterCam/sisyphus"
desc = "Modern gRPC service framework based on Kotlin/Spring Boot with Message DSL/HTTP transcoding/Google AIP support."
setTags("web", "microservice", "grpc", "spring", "protobuf", "rest")
setPlatforms(JVM)
}
link {
github = "varabyte/kobweb"
href = "https://kobweb.varabyte.com"
desc = "A modern framework for full stack web apps in Kotlin"
setPlatforms(JS)
setTags("web", "framework", "fullstack")
}
link {
github = "Ahoo-Wang/CoSec"
desc = "RBAC-based And Policy-based Multi-Tenant Security Framework."
setTags("kotlin", "security", "rbac", "policy", "multi-tenant", "jwt", "reactive", "web-flux", "spring-boot", "spring-cloud-gateway")
}
link {
github = "nacular/doodle"
href = "https://nacular.github.io/doodle/"
desc = "A pure Kotlin UI framework for the Web (and Desktop)"
setTags("web", "javascript", "kotlin-js", "framework", "desktop")
setPlatforms(COMMON, JVM, JS)
}
link {
github = "Ahoo-Wang/Wow"
desc = "A Modern Reactive CQRS Architecture Microservice development framework based on DDD and EventSourcing."
setTags("kotlin", "ddd", "cqrs", "eventsourcing", "eda", "microservice", "reactive", "mongodb", "r2dbc", "kafka", "test-driven", "opentelemetry", "webflux", "spring-boot")
}
}
subcategory("Testing") {
link {
github = "JetBrains/spek"
desc = "A specification framework for Kotlin."
setTags("test", "assert", "bdd")
awesome()
}
link {
github = "npryce/hamkrest"
desc = "A reimplementation of Hamcrest to take advantage of Kotlin language features."
setTags("test", "assert")
}
link {
github = "nhaarman/mockito-kotlin"
desc = "Using Mockito with Kotlin."
setTags("test", "mock")
awesome()
}
link {
github = "robstoll/atrium"
desc = "Multiplatform assertion library for Kotlin supporting i18n."
setTags("test", "assertion-library", "assert")
}
link {
github = "MarkusAmshove/Kluent"
desc = "Fluent Assertion-Library for Kotlin."
setTags("test", "assert")
}
link {
github = "winterbe/expekt"
desc = "BDD assertion library for Kotlin."
setTags("test", "assert", "bdd")
}
link {
github = "kotest/kotest"
desc = "Formerly known as KotlinTest, Kotest is a flexible and comprehensive testing tool that is multiplatform enabled."
setTags("test", "bdd", "matchers")
}
link {
github = "dmcg/konsent"
desc = "An acceptance test library for Kotlin."
setTags("test", "bdd", "gherkin")
}
link {
github = "EPadronU/balin"
desc = "Balin is a browser automation library for Kotlin. It's basically a Selenium-WebDriver wrapper library inspired by Geb."
setTags("test", "selenium", "UI", "automation")
}
link {
github = "dmcg/k-sera"
desc = "A JMock wrapper for Kotlin."
setTags("mock", "test")
}
link {
github = "dam5s/aspen"
desc = "Aspen is an RSpec and Spek inspired test runner for Kotlin."
setTags("test", "specification", "rspec", "spek")
}
link {
github = "qwertukg/SeleniumBuilder"
desc = "DSL for Selenium 2.0. Provide a possibility to write tests in Kotlin builder style."
setTags("selenium", "test")
}
link {
github = "mockk/mockk"
desc = "Pure Kotlin mocking library."
setTags("test", "mock")
awesome()
}
link {
github = "lupuuss/Mokkery"
desc = "The mocking library for Kotlin Multiplatform, easy to use, boilerplate-free and compiler plugin driven."
setTags("test", "mock")
setPlatforms(JVM, ANDROID, NATIVE, IOS)
}
link {
github = "Ninja-Squad/springmockk"
desc = "SpringMockK: MockBean and SpyBean, but for MockK instead of Mockito"
setTags("spring", "mock")
}
link {
github = "mvysny/DynaTest"
desc = "Write your tests in DSL way. Runs on JUnit5 Platform."
setTags("test", "assert", "dsl")
}
link {
github = "tyro/arbitrater"
desc = "Arbitrater is a library for creating arbitrary (randomized) instances of classes by reflection for use in testing."
setTags("test", "random", "random-generation")
}
link {
github = "xgouchet/Elmyr"
desc = "A utility to make Kotlin/Java tests random yet reproducible"
setTags("test", "random", "random-generation")
}
link {
github = "neworld/kupiter"
desc = "Kotlin DSL for Junit5"
setTags("test", "junit5", "dsl")
}
link {
github = "karumi/KotlinSnapshot"
desc = "Verify your data with snapshot testing."
setTags("snapshot", "test", "assert")
}
link {
github = "permissions-dispatcher/kompile-testing"
desc = "Testing tools for kotlinc and kapt."
setTags("kapt", "test")
}
link {
github = "robfletcher/strikt"
desc = "An assertion library for Kotlin"
setTags("test", "strikt", "assert")
}
link {
github = "dmcg/minutest"
desc = "Simple, Expressive, Extensible Testing for Kotlin on the JVM"
setTags("test", "minutest", "dsl")
}
link {
github = "codecentric/hikaku"
desc = "A library that tests if the implementation of a REST-API meets its specification."
setTags("test", "assert", "api", "rest")
}
link {
github = "serpro69/kotlin-faker"
desc = "Port of ruby faker gem written in kotlin"
setTags("test", "testing", "data-generator", "faker")
}
link {
github = "skrapeit/skrape.it"
desc = "A DSL-driven HTML/XML parser-library that enables meaningful testing of rendered HTML templates."
setPlatforms(JVM)
setTags("test", "html", "template", "dom", "dsl", "parser", "webcrawler", "scraper", "ktor", "spring-boot")
}
link {
github = "krzema12/vis-assert"
desc = "Test the shape of your functions!"
setTags("test", "testing", "dsl", "ascii-art")
}
link {
github = "EranBoudjnah/TestIt"
desc = "Generate unit testing boilerplate from kotlin files."
setTags("test", "testing", "generator", "generation", "mock")
}
link {
github = "EranBoudjnah/RandomGenKt"
desc = "Initialize instances of any class with generated data."
setTags("test", "testing", "random", "random-generation")
}
link {
github = "KennethWussmann/mock-fuel"
desc = "JUnit 5 extension to easily mock external HTTP requests made with the HTTP client Fuel."
setTags("test", "testing", "mock", "fuel", "junit")
}
link {
github = "jcornaz/kwik"
desc = "A property-based testing library for Kotlin. Execute tests with randomized inputs with a test-engine agnostic and compile-time safe library."
setTags("test", "testing", "assert", "random", "random-generation")
}
link {
github = "from-source/kiwi"
desc = "Fluent assertions library with support of json path."
setTags("test", "testing", "assert", "dsl", "multiplatform", "jsonpath")
}
link {
github = "tschuchortdev/kotlin-compile-testing"
desc = "A library for testing Kotlin and Java annotation processors, compiler plugins and code generation"
setPlatforms(JVM)
}
link {
github = "willowtreeapps/assertk"
desc = "assertions for kotlin inspired by assertj"
setPlatforms(COMMON, JVM, JS, NATIVE)
}
link {
github = "willowtreeapps/opentest4k"
desc = "kotlin multiplatform implementation/bindings of opentest4j"
setPlatforms(COMMON, JVM, JS, NATIVE)
}
link {
github = "sokomishalov/skraper"
desc = "Kotlin/Java library, cli tool and telegram-bot for scraping posts and media from various sources with neither authorization nor full page rendering (Facebook, Instagram, Twitter, Youtube, Tiktok, Telegram, Twitch, Reddit, Pinterest, Flickr, Tumblr, etc.)"
setPlatforms(JVM)
setTags("scraper", "parser", "webcrawler", "telegram", "bot")
}
link {
github = "iotacb/ChefkochAPI"
desc = "Kotlin/Java library, to parse and get information of recipes from chefkoch"
setPlatforms(JVM)
setTags("scraper", "parser", "webcrawler", "chefkoch", "api")
}
link {
github = "HelloCuriosity/model-forge"
desc = "A Kotlin library for auto generating models for tests."
setTags("test", "model-generation", "fixtures")
}
link {
github = "Trendyol/stove"
desc = "The easiest way of writing e2e tests for your JVM back-end API with Kotlin"
setTags("test", "e2e-testing", "testing-framework", "docker", "ktor", "spring", "test-automation")
}
link {
github = "Kotlin/kotlinx-benchmark"
desc = "A powerful library for benchmarking in Kotlin."
setTags("benchmark", "performance", "multiplatform")
setPlatforms(JVM, JS, NATIVE)
}
link {
github = "diffplug/selfie"
href = "https://selfie.dev/jvm"
desc = "Snapshot testing (inline, on disk, and memoization)"
setTags("test", "snapshot", "multiplatform")
}
}
subcategory("Mocks and Fakes") {
link {
github = "moove-it/fakeit"
desc = "Generates realistic fake data — like names, emails, dates, countries — to be used in your Android development environment."
setTags("testing", "android", "utility")
}
link {
github = "bluegroundltd/kfactory"
desc = "Fixture factory in Kotlin"
}
}
subcategory("Dependency Injection") {
link {
github = "Kodein-Framework/Kodein-DI"
desc = "Painless Kotlin Dependency Injection."
setTags("di", "dependency injection")
awesome()
}
link {
github = "kailan/kodeinject"
desc = "Constructor dependency injection for Kodein."
setTags("di", "dependency injection", "kodein")
}
link {
github = "traversals/kapsule"
desc = "Minimalist dependency injection library for Kotlin."
setTags("di", "dependency injection")
}
link {
github = "JLLeitschuh/kotlin-guiced"
desc = "Convenience Kotlin API over the Google Guice DI Library."
setTags("Dependency Injection", "Guice")
}
link {
github = "authzee/kotlin-guice"
desc = "Guice DSL extensions for Kotlin"
setTags("guice", "dependency injection", "di")
}
link {
github = "Ekito/koin"
desc = "A functional Kotlin dependency injection framework for Android and JVM."
setTags("android", "dependency-injection", "injection", "functional")
awesome()
}
link {
github = "Rasalexman/KODI"
desc = "light-weight KOtlin Dependency Injection Framework with or without reflection module without kapt"
}
link {
github = "evant/kotlin-inject"
setPlatforms(JVM)
}
link {
github = "corbella83/PopKorn"
desc = "Forget about modules and components. DI can be simple"
setTags("di", "dependency injection", "android", "multiplatform")
setPlatforms(ANDROID, COMMON, IOS, JS, JVM, NATIVE)
}
link {
github = "sergeshustoff/dikt"
desc = "Simple and powerful DI for kotlin multiplatform"
setTags("di", "dependency injection", "android", "multiplatform")
setPlatforms(ANDROID, COMMON, IOS, JS, JVM, NATIVE)
}
}
subcategory("Coroutines") {
link {
github = "Kotlin/kotlin-coroutines"
desc = "Design documents and examples for coroutines in Kotlin."
setTags("coroutines")
}
link {
github = "Kotlin/kotlinx.coroutines"
desc = "Libraries built upon Kotlin coroutines."
setTags("async", "await", "yield", "generator")
awesome()
}
link {
github = "soywiz/korio"
desc = "Korio: Kotlin cORoutines I/O: Streams + Async TCP Client/Server + Virtual File System for JVM, Node.JS and Browser."
setTags("vfs", "coroutiones", "io")
}
link {
github = "soywiz/korim"
desc = "Korim: Kotlin cORoutines IMaging utilities depending on Korio."
setTags("image", "coroutiones")
}
link {
github = "soywiz/korui"
desc = "Korui: Kotlin cORoutines User Interfaces: korio + kimage + korui"
setTags("ui", "coroutiones")
}
link {
github = "konrad-kaminski/spring-kotlin-coroutine"
desc = "Kotlin coroutine support for Spring."
setTags("coroutines", "spring")
}
link {
github = "marcoferrer/kroto-plus"
desc = "Protoc plugin for bringing together Kotlin, Protobuf, Coroutines, and gRPC."
setTags("coroutines", "grpc", "protobuf")
}
link {
github = "cloudoptlab/cloudopt-next"
desc = "A next-generation Java web lightweight framework based on vertx and kotlin. "
setTags("web", "vertx", "spring", "restful", "springboot", "springboot", "cloudopt", "next")
}
link {
github = "Rasalexman/coroutinesmanager"
desc = "try-catch safety coroutines manager"
}
link {
github = "rozkminiacz/FlowRiddles"
desc = "Repository for learning Kotlin Flow API"
setTags("kotlin", "kotlin-flow", "learning", "riddles")
}
link {
github = "KingFalse/harrier"
desc = "Simpler use of multithreading in Kotlin."
setTags("Thread", "Coroutines", "Multithreading", "JVM")
setPlatforms(JVM)
}
}
subcategory("Functional Programming") {
link {
github = "arrow-kt/arrow"
desc = "Functional companion to Kotlin's Standard Library."
setTags("fp", "functional")
}
link {
github = "arrow-kt/arrow-meta"
desc = "Functional companion to Kotlin's Compiler."
setTags("fp", "functional")
}
link {
github = "ReactiveX/RxKotlin"
desc = "RxJava bindings for Kotlin."
setTags("fp", "functional")
}
link {
github = "kittinunf/Result"
desc = "The modelling for success/failure of operations in Kotlin."
setTags("fp", "functional", "monad")
}
link {
github = "brianegan/bansa"
desc = "A state container for Kotlin & Java, inspired by Elm & Redux."
setTags("fp", "functional", "UI", "Interface", "Redux")
}
link {
github = "pardom/redux-kotlin"
desc = "Direct port of Redux for Kotlin."
setTags("fp", "functional", "UI", "Interface", "Redux")
}
link {
github = "beyondeye/Reduks"
desc = "A \"batteries included\" port of Reduxjs for Kotlin+Android"
setTags("fp", "functional", "UI", "Interface", "Redux")
}
link {
github = "michaelbull/kotlin-result"
desc = "A Result monad for modelling success or failure operations - inspired by Elm, Rust, & Haskell."
setTags("fp", "functional", "result", "monad", "either", "type")
}
link {
github = "fork-handles/forkhandles"
name = "fork-handles/result4k"
desc = "Result monad for type safe error handling in Kotlin"
href = "https://github.com/fork-handles/forkhandles/blob/trunk/result4k"
setTags("fp", "functional", "result", "monad", "either", "type", "error handling")
}
link {
github = "pakoito/Komprehensions"
desc = "Do comprehensions for Kotlin and 3rd party libraries."
setTags("comprehensions", "fp", "functional")
}
link {
github = "h0tk3y/kotlin-monads"
desc = "Monads for Kotlin"
setTags("fp", "functional", "monads")
}
link {
github = "poetix/klenses"
desc = "Lenses for Kotlin."
setTags("fp", "functional", "lenses")
}
link {
github = "reactor/reactor-core"
desc = "Non-Blocking Reactive Streams Foundation for the JVM. Natively supports Kotlin, since 3.1.0.M3."
setTags("reactive", "stream", "functional")
}
link {
github = "UrbanCompass/Snail-Kotlin"
desc = "An observables framework for Kotlin."
setTags("observables", "fp", "functional")
}
link {
github = "RubyLichtenstein/RxTest"
desc = "Kotlin DSL for testing RxJava2"
setTags("rxjava2", "kotlin", "kotlin-android", "testing", "kotlin-dsl")
setPlatforms(JVM)
}
}
subcategory("Serialization") {
link {
github = "Kotlin/kotlinx.serialization"
desc = "Kotlin multiplatform / multi-format reflectionless serialization"
awesome()
}
link {
github = "cbeust/klaxon"
desc = "Lightweight library to parse JSON in Kotlin."
setTags("json")
}
link {
github = "SalomonBrys/Kotson"
desc = "Gson for Kotlin, Kotson enables you to parse and write JSON with Google's Gson using a conciser and easier syntax."
setTags("json")
}
link {
github = "FasterXML/jackson-module-kotlin"
desc = "Jackson module that adds support for serialization/deserialization of Kotlin classes and data classes."
setTags("json", "jakson")
setPlatforms(JVM)
awesome()
}
link {
github = "Shengaero/kotlin-json"
desc = "A lightweight, stylistic, optimized, and multiplatform JSON library for Kotlin-JVM and Kotlin-JS"
setTags("json", "multiplatform")
}
link {
github = "fboldog/ext4klaxon"
desc = "Type Extensions (Long, Int, Enum, Date) for Klaxon."
setTags("json")
}
link {
github = "marifeta/kvalidator"
desc = "Kotlin validator (compatible with laravel validation rules) for json kotlinx.serialization!"
setTags("json", "validation", "laravel", "laravel-validation")
}
link {
github = "Jire/KTON"
desc = "Object notation in pure Kotlin!"
setTags("JSON", "XML")
}
link {
github = "fluidsonic/fluid-json"
desc = "A JSON library written in pure Kotlin."
setTags("json")
}
link {
github = "s4kibs4mi/kotlin-jsonq"
desc = "A simple Kotlin library to Query over Json Data."
setTags("json", "json-query", "json-manager", "kotlin-library", "kotlin-android")
}
link {
github = "aafanasev/kson"
desc = "Auto-generate GSON type adapters for Kotlin data classes"
setTags("json", "gson", "type adapter", "annotation processing", "kapt")
}
link {
github = "holgerbrandl/jsonbuilder"
desc = "A tiny DSL to create json using idiomatic Kotlin"
setPlatforms(JVM)
setTags("json")
}
link {
github = "qwertukg/xml-builder"
desc = "Simplest XML builder for Kotlin"
setTags("xml", "builder", "dsl")
setPlatforms(JVM)
}
link {
github = "lectra-tech/koson"
desc = "A concise and lightweight Kotlin DSL to build JSON objects and render their String representations"
setTags("json", "dsl", "builder")
setPlatforms(JVM)
}
link {
name = "knbt"
github = "BenWoodworth/knbt"
desc = "Minecraft NBT support for kotlinx.serialization"
setTags("nbt", "snbt", "minecraft", "kotlinx.serialization")
setPlatforms(COMMON, ANDROID, IOS, JS, JVM, NATIVE)
}
}
subcategory("Validation") {
link {
github = "deva666/KValidation"
desc = "Validation library"
setPlatforms(JVM)
setTags("validation", "validator")
}
link {
github = "konform-kt/konform"
desc = "Multiplatform validations for Kotlin data classes"
setPlatforms(JVM, JS)
setTags("validation", "dsl")
}
link {
github = "LeoColman/SimpleCpfValidator"
desc = "Simple Brazilian taxpayer document (CPF) validator"
setPlatforms(JVM)
setTags("validation", "validator", "cpf", "brazil")
}
link {
github = "kciter/thing"
desc = "A rule-based entity management library written in Kotlin"
setPlatforms(JVM)
setTags("validation", "validator", "spring", "entity")
}
}
subcategory("Database") {
link {
github = "JetBrains/Exposed"
desc = "Exposed is a prototype for a lightweight SQL library written over JDBC driver for Kotlin language."
setTags("database", "query", "schema", "dao")
awesome()
}
link {
github = "JetBrains/xodus"
desc = "Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub."
setTags("embedded-database", "java", "kotlin", "key-value", "entity-store", "transactional", "log-structured", "schema-less", "snapshot-isolation", "nosql", "xodus", "db", "database", "youtrack")
setPlatforms(JVM)
awesome()
}
link {
github = "mongodb/mongo-java-driver"
desc = "The official MongoDB Kotlin Driver allows developers to build server-side Kotlin applications with MongoDB."
setTags("database", "java", "kotlin", "mongodb", "query", "nosql", "db")
awesome()
}
link {
github = "ebean-orm/ebean"
desc = "Ebean is a Java & Kotlin ORM including type safe kotlin queries"
setTags("database", "sql", "orm", "query", "type-safe builder", "jpa")
}
link {
github = "cheptsov/kotlin-nosql"
desc = "NoSQL database query and access library for Kotlin."
setTags("database", "mongodb", "query")
}
link {
github = "jankotek/mapdb"
desc = "MapDB provides concurrent Maps, Sets and Queues backed by disk storage or off-heap-memory. It is a fast and easy to use embedded Java database engine."
setPlatforms(JVM)
}
link {
github = "darkredz/Zeko-SQL-Builder"
setTags("database", "sql", "query", "vert.x", "hikari-cp")
}
link {
github = "seratch/kotliquery"
desc = "A handy database access library in Kotlin."
setTags("database", "sql", "query")
}
link {
github = "andrewoma/kwery"
desc = "Kwery is an SQL library for Kotlin."
setTags("database", "sql", "query")
}
link {
github = "square/sqldelight"
desc = "Generates Java models from CREATE TABLE statements."
setTags("database", "sql", "type-safe builder")
awesome()
}
link {
github = "bloomberg/selekt"
href = "https://bloomberg.github.io/selekt"
desc = "Android SQL database library wrapping the community edition of SQLCipher, an SQLite extension that provides 256-bit AES encryption. Selekt realises the maximum concurrency offered by SQLite3."
setTags("android", "database", "sql", "sqlcipher", "sqlite")
}
link {
github = "x2bool/kuery"
desc = "Typesafe SQL with Kotlin."
setTags("database", "sql", "type-safe builder")
}
link {
github = "Litote/kmongo"
desc = "KMongo - Kotlin toolkit for Mongo"
setTags("database", "mongodb", "query")
}
link {
github = "requery/requery"
desc = "Modern SQL based query & persistence for Java/Kotlin/Android."
setTags("database", "query", "type-safe builder")
}
link {
github = "consoleau/kotlin-jpa-specification-dsl"
desc = "This library provides a fluent DSL for querying spring data JPA repositories using spring data Specifications."
setTags("database", "query", "jpa")
}
link {
github = "Ganet/rxaerospike"
desc = "RxJava2 wrapper for aerospike-client-java."
setTags("database", "arospike", "rx", "rxjava2")
}
link {
github = "Raizlabs/DBFlow"
desc = "A blazing fast, powerful, and very simple ORM android database library that writes database code for you."
setTags("orm", "jap", "kapt", "database")
}
link {
github = "KotlinPorts/kt-postgresql-async"
desc = "Kotlin/Gradle port of mauricio's async driver for postgres/mysql."
setTags("postgres", "mysql", "database driver")
}
link {
github = "shyiko/levelkt"
desc = "LevelDB client for Kotlin and/or Java 8+."
setTags("leveldb", "embedded")
}
link {
github = "SubiyaCryolite/jds"
desc = "Jenesis Data Store: a dynamic, cross platform, high performance, ORM data-mapper. Designed to assist in rapid development and data mining."
setTags("orm", "postgres", "mysql", "mssql", "sqlite", "oracle")
}
link {
github = "dizitart/nitrite-database"
desc = "Potassium Nitrite is a kotlin extension of nitrite database, an open source nosql embedded document store with mongodb like api."
href = "https://github.com/dizitart/nitrite-database/tree/master/potassium-nitrite"
setTags("nosql", "embedded", "documentdb", "object-storage")
}
link {
github = "pm-dev/kotlin-gremlin-ogm"
desc = "Kotlin-gremlin-ogm is a type-safe object/graph mapping library for Gremlin enabled graph databases."
setTags("nosql", "graph", "database", "gremlin", "janusgraph", "orm")
}
link {
github = "fluidsonic/fluid-mongo"
desc = "Coroutine support for MongoDB built on top of the official Reactive Streams Java Driver"
setPlatforms(JVM)
setTags("database", "mongodb", "nosql", "coroutines")
}
link {
github = "jasync-sql/jasync-sql"
desc = "Kotlin port of mauricio's async driver for postgres/mysql."
setTags("postgres", "mysql", "database driver")
}
link {
github = "kotlin-orm/ktorm"
desc = "A lightweight ORM Framework for Kotlin. Provides strong-typed and flexible SQL DSL and convenient sequence APIs to reduce our duplicated effort on database operations. "
setTags("ORM", "SQL", "DSL", "JDBC")
}
link {
github = "TouK/krush"
desc = "Idiomatic persistence layer for Kotlin, based on Exposed. It’s based on a compile-time JPA annotation processor that generates Exposed DSL table and objects mappings from your data classes."
}
link {
github = "coupang/spring-data-requery"
desc = "Spring Data for Requery (lightweight ORM)"
setTags("spring", "spring-data", "requery", "java", "kotlin", "kotlin-coroutines", "orm", "jpa")
setPlatforms(JVM)
}
link {
github = "ctripcorp/SQLlin"
desc = "A DSL SQLite library for Kotlin Multiplatform"
setTags("multiplatform", "android", "native", "sql", "sqlite", "database", "orm", "dsl", "ksp")
setPlatforms(COMMON, ANDROID, IOS, NATIVE)
}
link {
github = "komapper/komapper"
desc = "Komapper is an ORM library for server-side Kotlin with JDBC and R2DBC support."
setTags("database", "orm", "query", "sql", "jdbc", "r2dbc")
}
link {
github = "objectbox/objectbox-java"
desc = "Embedded on-device object database for Mobile Apps and IoT."
setTags("android", "database", "nosql")
}
link {
github = "smyrgeorge/sqlx4k"
desc = "A small non-blocking database driver written in Kotlin for the Native platform."
setTags("database", "SQL", "driver", "query", "postgres", "postgresql", "mysql", "async", "async-io", "non-blocking")
setPlatforms(NATIVE)
}
link {
github = "huanshankeji/exposed-vertx-sql-client"
desc = "Exposed on top of Vert.x Reactive SQL Client"
setTags("Exposed", "Vert.x", "vertx", "database", "query", "SQL", "postgres", "postgresql", "async", "async-io", "non-blocking")
setPlatforms(JVM)
}
}
subcategory("Tools") {
link {
github = "SonarSource/sonarlint-intellij"
desc = "An IDE extension that helps you detect and fix quality issues as you write code."
setTags("scripting", "ide", "linter", "language")
}
link {
github = "Kotlin/dokka"
desc = "Documentation Engine for Kotlin."
awesome()
}
link {
github = "Vorlonsoft/EasyDokkaPlugin"
desc = "Gradle Script plugin to generate documentation by Dokka for Kotlin and Java, Android and non-Android projects."
}
link {
github = "Vorlonsoft/GradleMavenPush"
desc = "Gradle Script plugin to upload Gradle Android/Kotlin/Java Artifacts to Maven repositories (JCenter, Maven Central, ...)."
}
link {
github = "holgerbrandl/kscript"
desc = "Scripting utils for Kotlin."
setTags("bash", "scripting", "kts")
}
link {
github = "kohesive/keplin"
desc = "Secure Kotlin scripting and binary lambda-scripts."
setTags("scripting", "kts")
}
link {
github = "pinterest/ktlint"
desc = "An anti-bikeshedding Kotlin linter with built-in formatter."
setTags("style", "linter")
awesome()
}
link {
github = "nbadal/ktlint-intellij-plugin"
desc = "An anti-bikeshedding Kotlin linter with built-in formatter. Get instant formating with Ktlint in your IDEA."
setTags("style", "linter","Intellij IDEA, Android Studio")
awesome()
}
link {
github = "sapotero/DocGenPlugin"
href = "https://plugins.jetbrains.com/plugin/26488-kdocgen"
desc = "KDocGen – an IntelliJ IDEA plugin that automatically generates KDoc, completes missing code, creates Kotest tests, and adds meaningful comments with a single shortcut!"
setTags("artificial-intelligence", "code-generation", "documentation", "Intellij IDEA, Android Studio")
awesome()
}
link {
name = "Kotlin Notebook"
desc = "Kotlin notebooks are interactive worksheets with rich outputs."
href = "https://plugins.jetbrains.com/plugin/16340-kotlin-notebook"
setTags("scripting", "kts")
awesome()
}
link {
github = "saveourtool/diktat"
desc = "Strict coding standard for Kotlin and a custom set of rules for detecting and autofixing code smells."
setTags("style", "linter", "static-analysis", "check style", "code smell")
setPlatforms(COMMON)
}