kotlin-js-jquery
kotlin-js-jquery copied to clipboard
A small framework for writing client-side web-applications in Kotlin
Kotlin JS + typesafe jQuery
What it does
Example of how to easily compile Kotlin to javascript with typesafe access to the jQuery library. Allows using any other javascript libraries (when converted using ts2kt, see below). Packages everything together via browserify (require.js) for distribution.
Try it out
./dist.sh
open dist/index.html
in your browser.
You should now see an animated textual counter.
Further plans
- ~~make use of npm and broswerify~~
- integrate kotlinx
Extension
It should be easy (not tested yet) to extend this project with other javascript libraries:
-
add npm-dependency to package.json
if no npm-package is available you can also put the library's *.js-file(s) to the web-directory
-
find typescript-file and transform it via ts2kt
-
use it via
require(...)