Skip to content

jooby-project/jooby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

033bb1a · Mar 29, 2025
Jun 28, 2024
Feb 22, 2025
Feb 11, 2024
Feb 22, 2025
Mar 24, 2025
Mar 29, 2025
Jan 21, 2020
Sep 12, 2024
Mar 14, 2016
Sep 16, 2022
Mar 13, 2023
Feb 11, 2024
Dec 30, 2018
Dec 6, 2024
Mar 13, 2023
Mar 13, 2023
Mar 24, 2025

Repository files navigation

Maven Central Javadoc Github Discord Become a Patreon Donate

∞ 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
David @tipsy
Mercedes Benz @mercedes-benz

Previous version

author

Edgar Espina

license

Apache License 2