I'm new to the whole Kotlin JS transpiling and try...
# javascript
t
I'm new to the whole Kotlin JS transpiling and trying to look for some good samples in combination with Spring boot. For now I have found some very simple proof of concepts, but they don't satisfy my hunger. 😉 Spring + Thymeleaf + Kotlin Js (simple Jquery DOM manipulation) ?
n
Could go the JQuery route although there are better Kotlin options around (eg Kotlinx HTML - https://github.com/Kotlin/kotlinx.html ).
Key thing is to know how the web framework interacts/integrates with JS, which will automatically apply to Kotlin JS.
When iterating with a web front-end it is very useful to enable code reloading (also known as hot reloading) if the web framework supports it.