https://github.com/jooby-project/jooby
The modular web framework for Java and Kotlin
https://github.com/jooby-project/jooby
kotlin micro-framework microframework modular web-framework webframework
Last synced: 6 months ago
JSON representation
The modular web framework for Java and Kotlin
- Host: GitHub
- URL: https://github.com/jooby-project/jooby
- Owner: jooby-project
- License: apache-2.0
- Created: 2014-10-20T02:03:16.000Z (about 11 years ago)
- Default Branch: 3.x
- Last Pushed: 2025-05-09T09:34:03.000Z (6 months ago)
- Last Synced: 2025-05-09T10:39:08.361Z (6 months ago)
- Topics: kotlin, micro-framework, microframework, modular, web-framework, webframework
- Language: Java
- Homepage: https://jooby.io
- Size: 71 MB
- Stars: 1,735
- Watchers: 53
- Forks: 200
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-java8 - Jooby Project - A modular web framework that supports multiple servers (Netty, Jetty, and Undertow), Websockets, etc., and can be used in many different ways by including a wide variety of modules, e.g., provide a full MVC web site, or just provide APIs. :8ball: (Web App/API frameworks)
- awesome-java - Jooby
- useful-java-links - Jooby - project/jooby.svg?style=social&label=Star&maxAge=2592000)](https://github.com/cjooby-project/jooby). http://jooby.org/ . License: [Apache 2](http://www.apache.org/licenses/LICENSE-2.0).  (I. Development / 2. Web development)
README
[](https://maven-badges.herokuapp.com/maven-central/io.jooby/jooby)
[](https://javadoc.io/doc/io.jooby/jooby/latest)
[](https://github.com/jooby-project/jooby/actions)
[](https://discord.gg/nmfJmmrq)
[](https://patreon.com/edgarespina)
[](https://paypal.me/edgarespina)
# ∞ do more, more easily
[Jooby](https://jooby.io) is a modern, performant and easy to use web framework for Java and Kotlin built on top of your
favorite web server.
Java:
```java
import static io.jooby.Jooby.runApp;
public class App {
public static void main(final String[] args) {
runApp(args, app -> {
app.get("/", ctx -> "Welcome to Jooby!");
});
}
}
```
Kotlin:
```kotlin
import io.jooby.runApp
fun main(args: Array) {
runApp(args) {
get ("/") {
"Welcome to Jooby!"
}
}
}
```
documentation
=====
Documentation is available at [https://jooby.io](https://jooby.io)
help
=====
[Discord](https://discord.gg/JmyxrKPvjY)
support my work
=====
- [Sponsor](https://github.com/sponsors/jknack)
- [Paypal](https://www.paypal.com/paypalme2/edgarespina)
- [Patreon](https://www.patreon.com/edgarespina)
- [support@jooby.io](mailto:support@jooby.io?Subject=Jooby%20Support)
sponsors
======
| Logo | Sponsor |
|------|---------|
|
| [@premium-minds](https://github.com/premium-minds) |
|
| [@tipsy](https://github.com/tipsy)|
|
| [@mercedes-benz](https://github.com/mercedes-benz)|
Previous version
=====
- v2: [Documentation](https://jooby.io/v2) and [source code](https://github.com/jooby-project/jooby/tree/2.x)
- v1: [Documentation](https://jooby.io/v1) and [source code](https://github.com/jooby-project/jooby/tree/1.x)
author
=====
[Edgar Espina](https://twitter.com/edgarespina)
license
=====
[Apache License 2](http://www.apache.org/licenses/LICENSE-2.0.html)