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 days 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 (over 10 years ago)
- Default Branch: 3.x
- Last Pushed: 2024-10-29T09:37:39.000Z (6 months ago)
- Last Synced: 2024-10-29T11:44:51.074Z (6 months ago)
- Topics: kotlin, micro-framework, microframework, modular, web-framework, webframework
- Language: Java
- Homepage: https://jooby.io
- Size: 70.5 MB
- Stars: 1,708
- Watchers: 54
- Forks: 197
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-java - Jooby
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.runAppfun 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)
- [[email protected]](mailto:[email protected]?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)