Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 22 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 (about 10 years ago)
- Default Branch: 3.x
- Last Pushed: 2024-04-04T16:10:05.000Z (7 months ago)
- Last Synced: 2024-04-05T16:36:46.641Z (7 months ago)
- Topics: kotlin, micro-framework, microframework, modular, web-framework, webframework
- Language: Java
- Homepage: https://jooby.io
- Size: 68.9 MB
- Stars: 1,654
- Watchers: 54
- Forks: 197
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.jooby/jooby/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.jooby/jooby)
[![Javadoc](https://javadoc.io/badge/io.jooby/jooby.svg)](https://javadoc.io/doc/io.jooby/jooby/latest)
[![Github](https://github.com/jooby-project/jooby/workflows/Full%20Build/badge.svg)](https://github.com/jooby-project/jooby/actions)
[![Discord](https://img.shields.io/discord/1225457509909922015?label=discord)](https://discord.gg/nmfJmmrq)
[![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina)
[![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg?logo=paypal&style=flat-square)](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/nmfJmmrq)
donate & support
=====
- [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)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)