Skip to content
/ jooby Public
forked from jooby-project/jooby

The modular web framework for Java and Kotlin

License

Notifications You must be signed in to change notification settings

jerouris/jooby

This branch is 2172 commits behind jooby-project/jooby:2.x.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5bd3b29 · Nov 7, 2019
Nov 7, 2019
Oct 4, 2019
Nov 7, 2019
Nov 7, 2019
Nov 7, 2019
Nov 7, 2019
Dec 3, 2018
Mar 14, 2016
Jul 2, 2019
Oct 4, 2019
Aug 29, 2019
Dec 30, 2018
Jul 3, 2019
Oct 7, 2019
Nov 7, 2019

Repository files navigation

Maven Central javadoc Become a Patreon Build Status Join the chat at https://gitter.im/jooby-project/jooby

∞ 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 org.jooby.Jooby.runApp;

public class App {

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

Kotlin:

import org.jooby.runApp

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

documentation

Documentation is available at https://jooby.io

1.x version

Documentation for 1.x is available at https://jooby.io/v1

Source code for 1.x is available at the 1.x branch

author

Edgar Espina

license

Apache License 2

About

The modular web framework for Java and Kotlin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 97.6%
  • Kotlin 1.3%
  • Other 1.1%