Interoperability with JavaScript
Kilua and kotlin-wrappers bindings give you a unified way to work with JavaScript modules from the common
code using external declarations. It gives you access to js.core.JsAny
external interface, which is introduced to match kotlin.js.JsAny
interface from Kotlin/WasmJs standard library. When using Kilua you will notice a lot of use of js.core.JsAny
interface, because it's the only way to build Kotlin/WasmJs compatible code. The same applies to types such as JsArray
, JsString
, JsNumber
and JsBoolean
, which are just aliases for standard types in Js target but are totally different in WasmJs.
When declaring your own external wrapper types, always extend js.core.JsAny
to make sure your externals will be compatible with WasmJs target.
Dynamic typing
Sometimes, especially when migrating code written for Kotlin/Js, you might want to use some dynamic
types. Unfortunately dynamic
is not supported in Kotlin/Wasm and also not available in Kilua. Instead you should use JsAny
, and use extension functions jsGet
and jsSet
defined in Kilua. For instance instead of writing this Kotlin/Js code:
you can write this in Kilua:
Native JavaScript objects
Kilua also offers some helper functions to automatically generate a native JS objects from external declarations or string-based mappings of different types.
The toJsAny()
extension and jsObjectOf()
function support all basic Kotlin types - String
, Int
, Double
, Boolean
, Array<*>
, List<*>
and Map<*,*>
and also support complex types.
Importing modules and resources
Kilua applications are developed with useEsModules()
configuration option to support ECMAScript modules. If you have worked with some other Kotlin/JS frameworks before, you might be familiar with the require()
function, but Kilua configuration doesn't allow you to use it for importing modules. Instead you should use @JsModule
annotation, which is also available as js.import.JsModule
for use in the common sources set. This annotation is used both for external NPM modules and local resources (like CSS files, images or translation files).
This is how you can use an example NPM module (JQuery):
Last updated