Popularity
6.5
Growing
Activity
9.7
-
1,642
54
196

Code Quality Rank: L3
Programming language: Java
License: Apache License 2.0
Tags: Web Frameworks    
Latest version: v2.9.4

Jooby alternatives and similar libraries

Based on the "Web Frameworks" category.
Alternatively, view Jooby alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Jooby or a related project?

Add another 'Web Frameworks' Library

README

Maven Central Javadoc Build Status Github Join the chat at https://gitter.im/jooby-project/jooby 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 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

help

Gitter

donate & support

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


*Note that all licence references and agreements mentioned in the Jooby README section above are relevant to that project's source code only.