All Projects → jooby-project → Jooby

jooby-project / Jooby

Licence: apache-2.0
The modular web framework for Java and Kotlin

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Jooby

recurse
Qt based micro web framework with middleware design
Stars: ✭ 19 (-98.55%)
Mutual labels:  micro-framework, web-framework
Xweb
High performance async web framework.
Stars: ✭ 314 (-76.01%)
Mutual labels:  webframework, microframework
waspy
WASP framework for Python
Stars: ✭ 43 (-96.72%)
Mutual labels:  micro-framework, webframework
Webgo
A minimal framework to build web apps; with handler chaining, middleware support; and most of all standard library compliant HTTP handlers(i.e. http.HandlerFunc).
Stars: ✭ 165 (-87.39%)
Mutual labels:  web-framework, webframework
Actframework
An easy to use Java MVC server stack
Stars: ✭ 690 (-47.29%)
Mutual labels:  web-framework, webframework
Falco
A functional-first toolkit for building brilliant ASP.NET Core applications using F#.
Stars: ✭ 214 (-83.65%)
Mutual labels:  web-framework, micro-framework
Sihl
A modular functional web framework
Stars: ✭ 267 (-79.6%)
Mutual labels:  web-framework, modular
jflask
Flask-inspired web micro-framework for Java (deprecated)
Stars: ✭ 18 (-98.62%)
Mutual labels:  micro-framework, web-framework
Aah
A secure, flexible, rapid Go web framework
Stars: ✭ 647 (-50.57%)
Mutual labels:  web-framework, webframework
Echo
High performance, minimalist Go web framework
Stars: ✭ 21,297 (+1526.97%)
Mutual labels:  web-framework, micro-framework
Grip
The microframework for writing powerful web applications.
Stars: ✭ 137 (-89.53%)
Mutual labels:  web-framework, microframework
Klein
werkzeug + twisted.web
Stars: ✭ 770 (-41.18%)
Mutual labels:  web-framework, micro-framework
Giraffe
Giraffe is an F# micro web framework for building rich web applications. It has been heavily inspired and is similar to Suave, but has been specifically designed with ASP.NET Core in mind and can be plugged into the ASP.NET Core pipeline via middleware. Giraffe applications are composed of so called HttpHandler functions which can be thought of a mixture of Suave's WebParts and ASP.NET Core's middleware.
Stars: ✭ 1,703 (+30.1%)
Mutual labels:  web-framework, micro-framework
core
Platform for rapid application development.
Stars: ✭ 31 (-97.63%)
Mutual labels:  modular, microframework
Rapidoid
Rapidoid - Extremely Fast, Simple and Powerful Java Web Framework and HTTP Server!
Stars: ✭ 1,571 (+20.02%)
Mutual labels:  web-framework, webframework
Joy
A full stack web framework written in janet
Stars: ✭ 327 (-75.02%)
Mutual labels:  web-framework, webframework
Tg2
Python web framework with full-stack layer implemented on top of a microframework core with support for MongoDB, Pluggable Applications and autogenerated Admin
Stars: ✭ 756 (-42.25%)
Mutual labels:  webframework, microframework
Chubbyphp Framework
A based PSR-15 microframework that also sets maximum flexibility with minimum complexity and easy replaceability of the individual components, but also of the framework.
Stars: ✭ 69 (-94.73%)
Mutual labels:  micro-framework, microframework
Go Script Bash
Framework for writing modular, discoverable, testable Bash scripts
Stars: ✭ 77 (-94.12%)
Mutual labels:  modular
Tinyhttp
🦄 0-legacy, tiny & fast web framework as a replacement of Express
Stars: ✭ 1,259 (-3.82%)
Mutual labels:  webframework

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].