/Tegral

🟣 Opinionated Kotlin libs, DSLs and frameworks to build better web apps

Primary LanguageKotlinApache License 2.0Apache-2.0

Tegral logo Tegral

GitHub Workflow Status (CI) Apache 2 license Latest release ktlint

Tegral is an opinionated collection of Kotlin frameworks, libraries, helpers and DSLs that help you make awesome apps, from web back-ends and beyond!

DOCUMENTATION | CHANGELOG

âš¡ Tegral is in an experimental status. Please report any issue you may find!

class HelloController : KtorController() {
    override fun Routing.install() {
        get("/") {
            call.respondText("Hello World!")
        }
    }
}

fun main() {
    tegral {
        put(::HelloController)
    }
}

Each Tegral library is reusable and extensible. Pick the most suitable libraries for your project, or maybe even all of them for a full Tegral-based application.