kotlin-wrappers VS kotlinx.html

Compare kotlin-wrappers vs kotlinx.html and see what are their differences.

kotlin-wrappers

Kotlin wrappers for popular JavaScript libraries (by JetBrains)

kotlinx.html

Kotlin DSL for HTML (by Kotlin)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
kotlin-wrappers kotlinx.html
16 10
1,287 1,540
1.2% 2.6%
9.9 7.6
1 day ago 3 days ago
Kotlin Kotlin
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

kotlin-wrappers

Posts with mentions or reviews of kotlin-wrappers. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-26.
  • How can I learn Kotlin web development?
    3 projects | /r/Kotlin | 26 Mar 2023
    If you want something more standard, I'd look at Kotlin Wrappers and look at examples of using react - https://github.com/JetBrains/kotlin-wrappers
  • Create any kind of app with Kotlin
    5 projects | dev.to | 22 Jul 2022
    Kotlin wrappers for JS.
  • [Typesafe HTML DSL] Is there a way to use the "%" unit in CSS?
    2 projects | /r/Kotlin | 13 Jul 2022
    Looking at the source code, yes there is: use suffix of pct: (-50).pct
    2 projects | /r/Kotlin | 13 Jul 2022
    Yes! Interesting that it isn't defined in the Length.kt file (that's where I was looking for it) and is instead in its lonesome, but I guess it makes sense as it's not actually a length value. Thanks for the help!
  • React Storybook for Kotlin/JS: Basic set up
    2 projects | dev.to | 11 Jul 2022
    plugins { kotlin("js") id("com.github.node-gradle.node") version "3.4.0" } kotlin { js(IR) { // let's rename it to more reusable as under that name we will access it in our boilerplate code moduleName = "stories" // browser also works fine here, we just need it for compiling purposes as of now nodejs {} // add a startup script to our package json compilations["main"].packageJson { customField( "scripts", mapOf("storybook" to "start-storybook -p 6006 -c $projectDir/.storybook --ci") ) } binaries.executable() } } tasks.named("build") { dependsOn("assemble") dependsOn("copyJsStories") } tasks.register("copyJsStories") { dependsOn("developmentExecutableCompileSync") from("$projectDir/src/main/js") into("$buildDir/compileSync/main/developmentExecutable/kotlin") // flatten all files to appear on one level eachFile { if (isDirectory) { exclude() } path = path.replace("/", ".") } } tasks.register("copyPackageJson") { dependsOn("build") from("$buildDir/tmp/publicPackageJson/package.json") into("$projectDir") } tasks.register("start") { dependsOn("build") dependsOn("npmInstall") args.addAll("run", "storybook") } tasks.named("npmInstall") { dependsOn("copyPackageJson") workingDir.set(file("$projectDir")) inputs.file("package.json") } dependencies { // dependency to the project with components implementation(project(":app")) // react dependencies to put on package.json explicitly // can resolve the actual versions on https://github.com/JetBrains/kotlin-wrappers implementation(npm("react", "^17.0.2")) implementation(npm("react-dom", "^17.0.2")) implementation(npm("react-router-dom", "^6.2.2")) // storybook specific dependencies implementation(npm("@storybook/builder-webpack5", "^6.5.9")) implementation(npm("@storybook/manager-webpack5", "^6.5.9")) implementation(npm("@storybook/node-logger", "^6.5.9")) implementation(npm("@storybook/preset-create-react-app", "^4.1.2")) implementation(npm("@storybook/react", "^6.5.9")) }
  • Do you use kotlin/js?
    5 projects | /r/Kotlin | 4 Jan 2022
    From my experience if you're truly trying to interop with JavaScript code that is already out there on npm, you better hope there is a library that already wraps it like kotlin wrappers. Otherwise you would have to write a wrapper library yourself or use dukat to convert typescript definitions to kotlin (which I have never had the best luck converting but maybe it got better?).
  • [AskJS] I have spent 7 years creating a JavaScript alternative, would love to hear your feedback
    5 projects | /r/javascript | 16 Aug 2021
    It's still pretty finnicky to configure and it hasn't emerged from alpha yet, so its future isn't exactly secure, but I'm hopeful as they appear to be investing a lot of resources into it and adjacent projects, e.g. the kotlin-react library.
  • Kotlin Team AMA #3: Ask Us Anything
    52 projects | /r/Kotlin | 27 May 2021
    We already have a battle-tested integration with react (it's used inside jetbrains.space) -- https://github.com/JetBrains/kotlin-wrappers And, take a look at docs and hands-on.
    52 projects | /r/Kotlin | 27 May 2021
    You can use kotlin-wrappers to write React applications or one of the Kotlin/JS frameworks.
  • KotlinJS and State Hooks
    3 projects | dev.to | 9 Mar 2021
    useState part of React Hooks for state management is something that even Javascript and Typescript engineers struggle with from time to time. We are going to reduce this struggle within the React ecosystem using KotlinJS and the ever incredible Kotlin-React library.

kotlinx.html

Posts with mentions or reviews of kotlinx.html. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-26.

What are some alternatives?

When comparing kotlin-wrappers and kotlinx.html you can also consider the following projects:

http4k - The Functional toolkit for Kotlin HTTP applications. http4k provides a simple and uniform way to serve, consume, and test HTTP services.

xmlutil - XML Serialization library for Kotlin

vertx-lang-kotlin - Vert.x for Kotlin

compose-multiplatform - Compose Multiplatform, a modern UI framework for Kotlin that makes building performant and beautiful user interfaces easy and enjoyable.

spark-kotlin - A Spark DSL in idiomatic kotlin // dependency: com.sparkjava:spark-kotlin:1.0.0-alpha

ktor - Framework for quickly creating connected applications in Kotlin with minimal effort

javalin - A simple and modern Java and Kotlin web framework [Moved to: https://github.com/javalin/javalin]

kotlinx.serialization - Kotlin multiplatform / multi-format serialization

kotlindl - High-level Deep Learning Framework written in Kotlin and inspired by Keras

Firefly - Firefly is an asynchronous web framework for rapid development of high-performance web application.

kotlin - Starter project for Kotlin

apollo-android - :robot:  A strongly-typed, caching GraphQL client for the JVM, Android, and Kotlin multiplatform.