|
|
|
|
|
by simonw
1350 days ago
|
|
I find that hello world example very pleasant to look at. Love that it's effectively a one-liner. public static void main(String[] args) {
var app = Javalin.create(/*config*/)
.get("/", ctx -> ctx.result("Hello World"))
.start(7070);
}
|
|
https://expressjs.com/en/starter/hello-world.html