Skip to content

Neton FrameworkA modern Kotlin/Native web framework

Approachable, fast, extensible. Built on Kotlin Multiplatform and KSP, compiled to a native binary — no reflection, millisecond startup.

main.kt
Neton.run(args) {

    http {
        port = 8080
    }

    routing {
        get("/") {
            "Hello Neton!"
        }
    }
}

Version

This documentation covers Neton 1.0.0-beta1 (Kotlin 2.4.0 / KSP 2.3.10).

Where the documentation and the code disagree, the compilable examples under neton/examples/ and the framework sources are authoritative. Please open an issue so the docs can be corrected.

Neton Framework Documentation