Skip to content

programadorthi/kotlin-routing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

504f636 · Jan 30, 2025
May 24, 2023
Sep 15, 2024
Sep 9, 2024
Sep 15, 2024
Sep 9, 2024
Nov 20, 2024
Sep 9, 2024
Sep 9, 2024
Jan 30, 2025
Nov 21, 2024
Apr 14, 2023
Feb 3, 2024
Jan 30, 2025
Jan 30, 2025
Nov 21, 2024
Sep 9, 2024
Sep 9, 2024
Sep 9, 2024
Sep 15, 2024
Apr 11, 2023
Aug 18, 2024
Nov 18, 2024
Sep 9, 2024
Apr 18, 2023
Apr 18, 2023
Nov 21, 2024

Repository files navigation

Kotlin Routing

A multiplatform, extensible, and independent routing library powered by Ktor. Create routing independently and extend it to what you need.

Core module

The core module is the Ktor routing engine modified to be "server" and "client". It is abstract and ready to extend. Using core module you can:

val router = routing {
    route(path = "/hello") {
        handle {
          // Handle the call to the routing "/login"
        }
    }
}

// And to call login routing...
router.call(uri = "/hello")

For more information check the Wiki pages.