Is there a way to run the Kotlin JS continuous run...
# javascript
n
Is there a way to run the Kotlin JS continuous run feature at the same time that a JVM server (eg Ktor based) is running via Gradle?
h
I’ve done it by using two separate gradle daemons. Also remember to use different ports for the applications themself
t
b
There is. ./gradlew jvmRun ./gradlew kotlinJvmCompile jsBrowserRun -t
Main idea is to only have one continuous build that recompiles both, jvm and js changes
n
Gradle daemons aren't exactly lightweight, and don't startup very quickly. Looks like the issues aren't a high priority unless they are going to be addressed in the next Kotlin Roadmap.