Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Latest commit

 

History

History
39 lines (26 loc) · 536 Bytes

File metadata and controls

39 lines (26 loc) · 536 Bytes

∞ do more, more easily

Jooby a modular micro web framework for Java and Kotlin:

Java:

import org.jooby.Jooby;

public class App extends Jooby {

  {
    get("/", () -> "Hey Jooby!");
  }

  public static void main(final String[] args) {
    run(App::new, args);
  }
}

Kotlin:

import org.jooby.*

class App: Kooby({
  get {
    "Hello Jooby!"
  }
})

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