Popularity
2.2
Stable
Activity
0.0
Stable
10
3
11

Programming language: Kotlin
License: Apache License 2.0
Tags: Web    

kotlin alternatives and similar libraries

Based on the "Web" category.
Alternatively, view kotlin alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of kotlin or a related project?

Add another 'Web' Library

README

Build Status

kotlin

Starter project for Kotlin.

quick preview

This project contains:

  • A simple hello world application with an optional name parameter
  • Integration tests using Spek

App.kt:

import org.jooby.*

/**
 * Kotlin stater project.
 */
class App: Kooby({

  get {
    val name = param("name").value("Jooby")
    "Hello $name!"
  }

})


/**
 * Run application:
 */
fun main(args: Array<String>) {
  run(::App, *args)
}

run

mvn jooby:run

tests

mvn clean package

help