QuickStart

Ktor logo

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 provideawesome 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 nativeenvironments, and client facilities to other native targets.

Table of contents:

Set up a Ktor project

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.

1) In a first step, you can configure the project to generate and select features to install:

Quick Start - 图2

2) In a second step, you can configure the project artifacts:

Quick Start - 图3

And that’s it. A new project will be created and opened inside your IDE.

Hello World

A simple hello world in Ktor looks like this:

Ktor Hello World

  • Here you define a plain callable main method.
  • Then you create an embedded server using Netty as the back-end that will listen on port 8080.
  • Installs the routing feature with a block where you can define routes for specific paths and HTTP methods.
  • Actual routes: In this case, it will handle a GET request for the path /demo, and will reply with a HELLO WORLD! message.
  • Actually start the server and wait for connections.

Main.kt

  1. import io.ktor.application.*
  2. import io.ktor.http.*
  3. import io.ktor.response.*
  4. import io.ktor.routing.*
  5. import io.ktor.server.engine.*
  6. import io.ktor.server.netty.*
  7. fun main(args: Array<String>) {
  8. val server = embeddedServer(Netty, port = 8080) {
  9. routing {
  10. get("/") {
  11. call.respondText("Hello World!", ContentType.Text.Plain)
  12. }
  13. get("/demo") {
  14. call.respondText("HELLO WORLD!")
  15. }
  16. }
  17. }
  18. server.start(wait = true)
  19. }

Accessing your application

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 theport 8080 (in line 10) and adjust it as needed.

Ktor Hello World Browser

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.

Walkthroughs