Popularity
8.6
Stable
Activity
7.6
-
1,543
50
131

Programming language: Kotlin
License: Apache License 2.0
Tags: Web    
Latest version: v1.6.13-js

kotlinx.html alternatives and similar libraries

Based on the "Web" category.
Alternatively, view kotlinx.html alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of kotlinx.html or a related project?

Add another 'Web' Library

README

Kotlin Stable Official JetBrains Project GitHub license Kotlin npm TeamCity (simple build status)

kotlinx.html

A kotlinx.html library provides DSL to build HTML to Writer/Appendable or DOM. Available to all Kotlin Multiplatform targets and browser(or other JavaScript engine) for better Kotlin programming for Web.

Get started

See Getting started page for details how to include the library.

DOM

You can build DOM tree with JVM and JS naturally

See example for JavaScript-targeted Kotlin

window.setInterval({
    val myDiv = document.create.div("panel") {
        p { 
            +"Here is "
            a("https://kotlinlang.org") { +"official Kotlin site" }
        }
    }

    document.getElementById("container")!!.appendChild(myDiv)

    document.getElementById("container")!!.append {
        div {
            +"added it"
        }
    }
}, 1000L)

Stream

You can build HTML directly to Writer (JVM) or Appendable (Multiplatform)

System.out.appendHTML().html {
    body {
        div {
            a("https://kotlinlang.org") {
                target = ATarget.blank
                +"Main site"
            }
        }
    }
}

Documentation

See wiki pages

Building

See development page for details.


*Note that all licence references and agreements mentioned in the kotlinx.html README section above are relevant to that project's source code only.