About the Online IDE infrastructure used by Kotlin at "Try Online" feature

Hi Kotlin users/developers,

I’m really interested in the web infrastructure used to compile/run Kotlin online. Is there a framework based on Kotlin iteself to build a similar one? I’m also developing a JVM based language [basically Java + annotations] where I want to provide an online IDE and this one used by Kotlin is really interesting and really useful.

thanks much,
hemr

There is no framework as such, and we do not plan to provide one, but the code of the web demo is opensource: GitHub - JetBrains/kotlin-web-demo: Online mini-IDE for Kotlin

thanks much!