kt-mvvm

Cross-Platform Model View ViewModel with Kotlin

View on GitHub

Browser

With kt-mvvm your application can be transpiled to JavaScript and executed in the browser. The bck2brwsrShow task generates necessary .js files and launches a browser with the application

$ ./gradlew bck2brwsrShow
...
Showing http://localhost:53241/index.html
...
$ ls -l web/build/web/
bck2brwsr.js
index.css
index.html
lib
main.js

The files in web/build/web directory contain everything needed to execute your application and as such they can be deployed to any HTTP server as a static content. Read more.

Kt-Mvvm-Demo in the browser