Could someone suggest me some Kotlin frameworks/th...
# server
m
Could someone suggest me some Kotlin frameworks/things for making a website? I want to build a run of the mill simple webpage with login and a database, for which I'd usually use PHP, but I'd like to not use PHP. How do I do these things in Kotlin? Thank you.
s
you might wanna have a look at this: https://github.com/KotlinBy/awesome-kotlin
for simple stateless REST stuff, folks seem to recommend ktor a bit, Spark Java also works pretty well with Kotlin
👍 1
there’s also Javalin, whose developer hangs out on this slack a bit
t
👋
m
Thank you for answers! I went with ktor with FreeMarker templating, Javalin looks very similar though.