Skip to content
@jooby-project

jooby

The modular web framework for Java and Kotlin

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

donate & support

Previous version

author

Edgar Espina

license

Apache License 2

Popular repositories Loading

  1. jooby jooby Public

    The modular web framework for Java and Kotlin

    Java 1.7k 200

  2. funzy funzy Public archive

    Functional Idioms for Java 8

    Java 4 4

  3. FrameworkBenchmarks FrameworkBenchmarks Public

    Forked from TechEmpower/FrameworkBenchmarks

    Source code for the framework benchmarking project

    PHP 1

  4. jooby.io jooby.io Public

    jooby.io website

    HTML 1 1

  5. site-generator site-generator Public archive

    Jooby web site generator

    Ruby 6

  6. web-frameworks web-frameworks Public

    Forked from the-benchmarker/web-frameworks

    Which is the fastest web framework?

    PHP

Repositories

Showing 7 of 7 repositories

Top languages

Loading…

Most used topics

Loading…