Hey everyone, what are some big open source projec...
# ktor
p
Hey everyone, what are some big open source projects that use Ktor server? I’d love to check out some bigger projects to see how code is structured etc.
h
Ktor is really not forcing structures down your throat, you can choose multiple ways, maybe parts of your code makes sense to have it one way, maybe other different way, we have it documented why we choose this over that in those parts and it works. Here's one helpful example that really was there in my beginnings with Ktor https://github.com/csieflyman/multi-projects-architecture-with-Ktor
r
What is nice about Ktor is that it doesn't force you to structure code in any particular way. Apart from the plugin and route structure that is included in the app generator, you can use any architecture you'd like. I'm working with Hexagonal Architecture with core and adapters as separate Gradle modules (and that's plain Kotlin really for the most part).
p
Thanks a lot!