
Kotlin Wrappers
This repository hosts a number of Kotlin wrappers for popular JavaScript libraries.
To learn more please refer to the API Reference.
Artifacts are published to Maven Central, see the corresponding README files for package coordinates.
All packages require JDK 11 to be installed.
Using In Your Projects
Use Kotlin Wrappers' version catalog.
Just declare kotlin-wrappers-catalog
in root settings.gradle.kts
and specify the modules you need:
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
create("kotlinWrappers") {
val wrappersVersion = "2025.3.7"
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:$wrappersVersion")
}
}
}
dependencies {
jsMainImplementation(kotlinWrappers.emotion)
jsMainImplementation(kotlinWrappers.react)
jsMainImplementation(kotlinWrappers.reactDom)
jsMainImplementation(kotlinWrappers.tanstack.reactTable)
}
Examples
Follow these examples to learn how to start developing your Kotlin/JS apps. Good luck and have fun!
Contributing
Contributions to this project are welcome! Please see the open
issues or chat with us on
the #javascript channel in our
Slack.