GitHub - jooby-project/jooby: The modular web framework for Java and Kotlin

3 min read Original article ↗

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

The modular web framework for Java and Kotlin

License

Apache-2.0 license

1.8k stars 202 forks Branches Tags Activity

Notifications You must be signed in to change notification settings

Repository files navigation

Maven Central Javadoc Github Discord Reproducible Builds GitHub Sponsors

∞ do more, more easily

Jooby is a modern, performant and easy to use web framework for Java and Kotlin built on top of your favorite web server.

Java:

import static io.jooby.Jooby.runApp;

public class App {

  public static void main(final String[] args) {
    runApp(args, app -> {
      app.get("/", ctx -> "Welcome to Jooby!");
    });
  }
}

Kotlin:

import io.jooby.runApp

fun main(args: Array<String>) {
  runApp(args) {
    get ("/") {
      "Welcome to Jooby!"
    }
  }
}

documentation

Documentation is available at https://jooby.io

help

Discord

support my work

sponsors

Logo Sponsor
Premium Minds @premium-minds
Adam Gent @agentgt
David @tipsy

Previous version

author

Edgar Espina

license

Apache License 2

Powered by

JetBrains logo.