Ktor is a framework to easily build connected applications – web applications, HTTP services, mobile and browser applications. Modern connected applications need to be asynchronous to provide the best experience to users, and Kotlin coroutines provide awesome facilities to do it in an easy and straightforward way.
While not yet entirely there, the goal of Ktor is to provide an end-to-end multiplatform application framework for connected applications. Currently, JVM client and server scenarios are supported, as well as JavaScript, iOS and Android clients, and we are working on bringing server facilities to native environments, and client facilities to other native targets.
Table of contents:
You can set up a Ktor project using Maven, Gradle, start.ktor.io and the IntelliJ Plugin.
The plugin allows you to create a Ktor project as well as start.ktor.io, but with the additional convenience of being fully integrated in the IDE. If you don’t have the plugin yet, there is a page about how to install the plugin.
1) In a first step, you can configure the project to generate and select features to install:
2) In a second step, you can configure the project artifacts:
And that’s it. A new project will be created and opened inside your IDE.
A simple hello world in Ktor looks like this:
/demo
, and will reply with a HELLO WORLD!
message.import io.ktor.application.*
import io.ktor.http.*
import io.ktor.response.*
import io.ktor.routing.*
import io.ktor.server.engine.*
import io.ktor.server.netty.*
fun main(args: Array<String>) {
val server = embeddedServer(Netty, port = 8080) {
routing {
get("/") {
call.respondText("Hello World!", ContentType.Text.Plain)
}
get("/demo") {
call.respondText("HELLO WORLD!")
}
}
}
server.start(wait = true)
}
Since you have a main method, you can execute it with your IDE. That will open a HTTP server, listening on http://127.0.0.1:8080, You can try opening it with your favorite web browser.
If that doesn’t work, maybe your computer is using that port already. You can try changing the port 8080 (in line 10) and adjust it as needed.
At this point you should have a very simple Web Back-end running, so you can make changes, and see the results in your browser.
Since you have configured a Gradle project with the application plugin and the mainClassName
,
you can also run it from a terminal using ./gradlew run
on Linux/Mac, or gradlew run
on a Windows machine.