You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/jooby-project/jooby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
9
-
[](https://twitter.com/joobyproject)
10
6
11
7
# ∞ do more, more easily
12
8
13
-
[Jooby](http://jooby.org) a modular micro web framework for Java and [Kotlin](http://jooby.org/doc/lang-kotlin):
9
+
[Jooby](https://jooby.io) a modular micro web framework for Java and Kotlin:
14
10
15
11
Java:
16
12
@@ -20,7 +16,7 @@ import org.jooby.Jooby;
20
16
publicclassAppextendsJooby {
21
17
22
18
{
23
-
get("/", ()->"Hey Jooby!");
19
+
get("/", ctx->"Hey Jooby!");
24
20
}
25
21
26
22
publicstaticvoidmain(finalString[] args) {
@@ -32,18 +28,16 @@ public class App extends Jooby {
32
28
33
29
[Kotlin](http://jooby.org/doc/lang-kotlin):
34
30
35
-
```java
36
-
37
-
import org.jooby.*
31
+
```kotlin
38
32
39
-
classApp: Kooby({
40
-
get {
41
-
"Hello Jooby!"
42
-
}
43
-
})
33
+
import org.jooby.run
44
34
45
35
fun main(args:Array<String>) {
46
-
run(::App, *args)
36
+
run(args) {
37
+
get ("/") { ctx ->
38
+
"Welcome to Jooby!"
39
+
}
40
+
}
47
41
}
48
42
49
43
```
@@ -52,25 +46,17 @@ fun main(args: Array<String>) {
52
46
53
47
***Simple, effective and easy to learn**
54
48
55
-
***Fast development cycles**: run, debug and reload your application using [devtools](http://jooby.org/doc/devtools) available for Maven and Gradle
56
-
57
49
***Script routes**: annotation and reflection free programming model using lambdas. Similar to [express.js](http://expressjs.com), [Sinatra](http://www.sinatrarb.com), etc..
58
50
59
51
***MVC routes**: annotation and reflection programming model using controller classes. Similar to [Spring](http://spring.io), [Jersey](https://jersey.java.net), etc..
60
52
61
53
***Multi-server**: [Jetty](http://www.eclipse.org/jetty/), [Netty](http://netty.io) and [Undertow](http://undertow.io)
62
54
63
-
***Multi-protocol**: `HTTP`, `HTTPS`, `HTTP2.0`, `Server-SentEvents` and `Web-Socket`
64
-
65
-
***Modular**.Make it **full-stack** via the extensive [module eco-system](http://jooby.org/modules)
66
-
67
-
***Readyfor the modern web** with the [asset management](http://jooby.org/doc/asset-management) tools
68
-
69
55
## found this project useful :heart:
70
56
71
57
*Support by clicking the :star: button on the upper right of this page. :v:
72
58
73
-
*Buy [Edgar](https://patreon.com/edgarespina) a beer!
59
+
*[Donate](https://patreon.com/edgarespina) to support Jooby development!
74
60
75
61
76
62
want to contribute?
@@ -84,7 +70,7 @@ want to contribute?
84
70
*If you know the answer to a question posted to our [group](https://groups.google.com/forum/#!forum/jooby-project) - don't hesitate to write a reply.
85
71
*Share your ideas or ask questions on the [jooby group](https://github.com/jooby-project/jooby/issues) - don't hesitate to write a reply - that helps us improve javadocs/FAQ.
86
72
*If you miss a particular feature - browse or ask on the [group](https://groups.google.com/forum/#!forum/jooby-project) - don't hesitate to write a reply, show us some sample code and describe the problem.
87
-
*Write a blog post about how you use or extend [jooby](http://jooby.org).
73
+
*Write a blog post about how you use or extend [jooby](https://jooby.io).
88
74
*Please suggest changes to javadoc/exception messages when you find something unclear.
89
75
*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.
0 commit comments