Questions tagged [kotlin-multiplatform]

Describing Kotlin Multiplatform projects designed to enable code sharing across JVM, JavaScript, Android, and Native platforms.

Creating a wrapper from index.d.ts in Kotlin JS

I am currently exploring the possibility of utilizing Kotlin JS for an express application. It has come to my attention that there is no full, current wrapper available for express, however the package includes type definitions in its index.d.ts file. I' ...

Develop a unique Kotlin/JS WebComponent featuring custom content

I am trying to create a custom tag using Kotlin that includes default content. While the example I found works well, I am having trouble adding default content (such as an input element) inside the custom tag. After attempting various approaches, I have o ...

Tips for integrating AsyncGenerators with Kotlin/JS

I am currently exploring the use of IPFS with Kotlin/JS, but my issue is not limited to that specific context. The functions ipfs.cat() and ipfs.get() return an AsyncGenerator, and I am uncertain about how to properly iterate over it using Kotlin (I am als ...