GithubHelp home page GithubHelp logo

hanibalsk / jooby Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jooby-project/jooby

0.0 2.0 0.0 47.93 MB

A modular micro web framework for Java and Kotlin

Home Page: http://jooby.org

License: Apache License 2.0

Shell 0.02% Java 99.60% HTML 0.16% CSS 0.01% FreeMarker 0.01% Kotlin 0.17% Groovy 0.04%

jooby's Introduction

Maven Central javadoc Build Status coveralls.io codecov.io Google Group Join the chat at https://gitter.im/jooby-project/jooby Follow us on twitter

∞ do more, more easily

Jooby a modular micro web framework for Java and Kotlin:

  • Simple, effective and easy to learn

  • Fast development cycles: run, debug and reload your application using devtools available for Maven and Gradle

  • Script routes: annotation and reflection free programming model using lambdas. Similar to express.js, Sinatra, etc..

  • MVC routes: annotation and reflection programming model using controller classes. Similar to Spring, Jersey, etc..

  • Multi-server: Jetty, Netty and Undertow

  • Multi-protocol: HTTP, HTTPS, HTTP 2.0, Server-Sent Events and Web-Socket

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

  • Ready for the modern web with the asset management tools

found this project useful ❤️

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

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.*

class App: Kooby({
  get {
    "Hello Jooby!"
  }
})

fun main(args: Array<String>) {
  run(::App, *args)
}

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

license

Apache License 2

jooby's People

Contributors

jknack avatar paul-hammant avatar krisztiankocsis avatar ajcamilo avatar jstumpp avatar jschneider avatar pierredavidbelanger avatar mdesharnais avatar spinscale avatar andrenpaes avatar drorbuhnik avatar hansjorg avatar nikos avatar yholkamp avatar leleuj avatar vjames19 avatar pabl0rg avatar bryanneumann avatar vbauer avatar auxiliaire avatar gitter-badger avatar sbcd90 avatar feniix avatar sphogan avatar nlochschmidt avatar nedtwigg avatar derkrischan avatar dajester2013 avatar fabienmoritz avatar dogrover avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.