For someone that’s only using the community edition of Intellij for a personal project, what’s the best way to write a Kotlin/JS project that can utilize a nice REPL style? My first thought was to try and run the code via node.js during development/debugging, but that doesn’t seem like it’s an option? My next thought was to just build it as a multiplatform jvm/js project, and just run the jvm version during development, and deploy the js at the end? Is there a better way, given I don’t actually want to target the jvm? ^^