fabienmoritz / jooby

Scalable, fast and modular micro web framework for Java and Kotlin

Home Page:http://jooby.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status Google Group Join the chat at https://gitter.im/jooby-project/jooby Maven Central @joobyproject

∞ do more, more easily

Jooby a scalable, fast and modular micro web framework for Java, JavaScript and Kotlin.

  • Simple, effective and easy to learn. Ideal for small but also large scale applications.

  • Scalable. Stateless application development.

  • Fast. Thanks to the most popular NIO web servers.

  • Modular. Make it full-stack via the extensive module eco-system.

  • Ready for the modern web, with the awesome and powerful asset module

hello world!

Java:

import org.jooby.Jooby;

public class App extends Jooby {

  {
    get("/", () -> "Hey Jooby!");
  }

  public static void main(final String[] args) {
    run(App::new, args);
  }
}

Kotlin:

import org.jooby.*

fun main(args: Array<String>) {
  run(*args) {
    get {
      "Hello Kotlin"
    }
  }
}

JavaScript:

var app = jooby();

app.get('/', function () 'Hey Jooby!');

found this project useful ❤️

  • Support by clicking the ⭐ button on the upper right of this page. ✌️

killer features

  • Multi-language. Write your application in Java, Kotlin or JavaScript
  • Scripting programming model. Like express.js, Sinatra, etc.. but also
  • MVC programming model. Like Spring controllers or Jersey resources
  • Multi-server. Including Netty, Jetty and Undertow
  • HTTPS
  • HTTP/2
  • Server-Sent Events
  • Web-Socket
  • Dependency Injection
  • Hot reload for development

want to contribute?

  • Fork the project on Github, and clone that to your workstation
  • Read about building Jooby
  • Wondering what to work on? See task/bug list and pick up something you would like to work on.
  • Write unit tests.
  • Create an issue or fix one from issues.
  • If you know the answer to a question posted to our group - don't hesitate to write a reply.
  • Share your ideas or ask questions on the jooby group - don't hesitate to write a reply - that helps us improve javadocs/FAQ.
  • If you miss a particular feature - browse or ask on the group - don't hesitate to write a reply, show us some sample code and describe the problem.
  • Write a blog post about how you use or extend jooby.
  • Please suggest changes to javadoc/exception messages when you find something unclear.
  • If you have problems with documentation, find it non intuitive or hard to follow - let us know about it, we'll try to make it better according to your suggestions. Any constructive critique is greatly appreciated. Don't forget that this is an open source project developed and documented in spare time.

author

[Edgar Espina] (https://twitter.com/edgarespina)

license

Apache License 2

About

Scalable, fast and modular micro web framework for Java and Kotlin

http://jooby.org

License:Apache License 2.0


Languages

Language:Java 99.6%Language:HTML 0.2%Language:Kotlin 0.1%Language:Groovy 0.0%Language:Shell 0.0%Language:CSS 0.0%Language:FreeMarker 0.0%