How big is the output size?
# javascript
k
How big is the output size?
n
For a Hello World app it is around 65 KB after using Kotlin JS DCE (via the Gradle plugin), and GZip compression (with Kotlin JS 1.1.4). That size is likely to be lower with Kotlin JS 1.2+.
One person was reporting 247 KB on a real world Kotlin JS project; can find more details here: https://discuss.kotlinlang.org/t/a-new-dead-code-elimination-tool-for-js/3777/2
k
We have a real world web app deployed using Kotlin.JS. The final binary is 100kbs Gzipped after DCE and Closure-compiled
👍 1