An open API service indexing awesome lists of open source software.

https://github.com/bradleywood/kt-bindings

A set of Kotlin JS bindings
https://github.com/bradleywood/kt-bindings

binding codemirror editor javascript kotlin wrapper

Last synced: 2 months ago
JSON representation

A set of Kotlin JS bindings

Awesome Lists containing this project

README

        

# kt-bindings

This project consists of a set of Kotlin bindings for popular JavaScript libraries

# Projects

- [kt-bindings-codemirror](kt-bindings-codemirror/src/main/kotlin/bindings/codemirror/) - a versatile text editor

- TODO

# Examples

### CodeMirror

```kotlin
import bindings.codemirror.CodeMirror
import kotlin.browser.document

fun main(args: Array) {
val codeMirror = CodeMirror(document.getElementById("code")!!, object {
val mode = "text/x-kotlin"
val lineNumbers = true
})
codeMirror.setSize("100%", "100%")
codeMirror.setValue("\nfun main(args: Array) { \n\tprintln(\"Hello, World\")\n}\n")
}

```