SlideShare a Scribd company logo
Christopher Ng
Kotlinian @
Editor @ blacklenspub.com
Kotlin Wonderland
We love JVM
Single page app?
IoT?
TensorFlow?
iOS?
Let’s say goodbye
to JVM
Kotlin JavaScript
Kotlin.js
Main.jsMain.kt
Kotlin/JS
fun main(args: Array<String>) {
println("Hello JavaScript!")
}
var ConsoleOutput = function (Kotlin) {
'use strict';
var _ = Kotlin.defineRootPackage(null, {
main_kand9s$: function (args) {
Kotlin.println('Hello JavaScript!');
}
});
Kotlin.defineModule('ConsoleOutput', _);
_.main_kand9s$([]);
return _;
}(kotlin);
transpile
group 'com.babedev'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.4'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin2js'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
}
compileKotlin2Js {
kotlinOptions.outputFile = "${projectDir}/web/output.js"
kotlinOptions.moduleKind = "commonjs"
}
build.doLast {
configurations.compile.each { File file ->
copy {
includeEmptyDirs = false
from zipTree(file.absolutePath)
into "${projectDir}/web"
include { fileTreeElement ->
def path = fileTreeElement.path
path.endsWith(".js") &&
(path.startsWith("META-INF/resources/") || !path.startsWith("META-INF/"))
}
}
}
}
JS Stdlib
- org.w3c.dom
- org.w3c.fetch
- org.w3c.xhr
- org.w3c.files
- org.w3c.notifications
- kotlin.js
org.w3c.dom
// Kotlin
val img = document.createElement("img")
img.setAttribute("src",
"https://kotlinlang.org/assets/images/open-graph/kotlin_250x250.png")
val div = document.getElementById("app")
div?.appendChild(img)
// Javascript
var img = document.createElement("img");
img.setAttribute("src",
"https://kotlinlang.org/assets/images/open-graph/kotlin_250x250.png");
var div = document.getElementById("app");
div != null ? div.appendChild(img) : null;
org.w3c.fetch
window.fetch("https://httpbin.org/ip")
.then({ response ->
response.json().then({ body ->
console.log(body)
})
})
.catch({ error ->
console.error(error.message)
})
Dynamic Type
val database = js("firebase.database()")!!
database.ref("/messages")
.on("value") { snapshot: dynamic ->
snapshot.forEach(fun (child: dynamic) {
console.log(child.`val()`)
})
}
External
// Javascript
function greet(msg) {
console.log(msg)
}
// Kotlin
external fun greet(msg: Any?): Unit
greet("Hello Kotlin")
Let’s try
https://github.com/ThaiKotlinDev/kotlinjs-wonderland
Should try
https://github.com/Kotlin/kotlin-fullstack-sample
Kotlin Native
Non-JVM Targets
- Embedded systems / IoT
- iOS
- Windows
- Web Assembly
Main.kt
Kotlin/Native
LLVM
Executable app
http://hadihariri.com/2017/05/28/raspberry-pi-starter-kit-and-kotlin-native/
import pigpio.*
fun main(args: Array<String>) {
const val port = 21
if (gpioInitialise() < 0) {
println("Error initialising")
} else {
if (gpioSetMode(port, PI_OUTPUT) < 0) {
println("Could not set mode for GPIO$port")
} else {
if (gpioWrite(port, 1) < 0) {
println("Could not write to GPIO$port")
}
}
}
}
http://justmaku.org/2017-06-07-kotlin-on-ios
Kotlin Native
C++ Wrapper
Objective-C Bridging Header
Swift
Try it
https://github.com/JetBrains/kotlin-native/tree/master/samples
Swift to Kotlin
https://github.com/angelolloqui/SwiftKotlin
Christopher Ng
Kotlinian @
Editor @ blacklenspub.com
"Thank you".repeat(infinity)

More Related Content

PDF
Kotlin workshop
PDF
Introduction kot iin
PDF
«Продакшн в Kotlin DSL» Сергей Рыбалкин
PDF
Jggug 2010 330 Grails 1.3 観察
PPTX
Kotlin is charming; The reasons Java engineers should start Kotlin.
PPTX
Kotlin Coroutines and Rx
PDF
Java libraries you can't afford to miss
PDF
G*なクラウド 雲のかなたに ショートバージョン
Kotlin workshop
Introduction kot iin
«Продакшн в Kotlin DSL» Сергей Рыбалкин
Jggug 2010 330 Grails 1.3 観察
Kotlin is charming; The reasons Java engineers should start Kotlin.
Kotlin Coroutines and Rx
Java libraries you can't afford to miss
G*なクラウド 雲のかなたに ショートバージョン

What's hot (20)

PDF
Developing JavaScript Widgets
PDF
Talk KVO with rac by Philippe Converset
PDF
Intro to Java 8 Closures (Dainius Mezanskas)
PDF
Nick Sieger JRuby Concurrency EMRubyConf 2011
PPTX
Coroutines talk ppt
PDF
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
PPT
jimmy hacking (at) Microsoft
PDF
Coroutines for Kotlin Multiplatform in Practise
PDF
IoT Best practices
PDF
Kotlin v1.1.2
PDF
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
PDF
GPars For Beginners
PDF
Beautiful code instead of callback hell using ES6 Generators, Koa, Bluebird (...
PPT
JS everywhere 2011
PPTX
All you need to know about the JavaScript event loop
PDF
Exploring Clojurescript
PDF
Kotlin for backend development (Hackaburg 2018 Regensburg)
PPSX
JS Fest 2018. Сергей Пузанков. E2E-тестирование фронтенда c Hermione
PDF
Java Week9(B) Notepad
PDF
An Introduction to Reactive Cocoa
Developing JavaScript Widgets
Talk KVO with rac by Philippe Converset
Intro to Java 8 Closures (Dainius Mezanskas)
Nick Sieger JRuby Concurrency EMRubyConf 2011
Coroutines talk ppt
JRuby + Rails = Awesome Java Web Framework at Jfokus 2011
jimmy hacking (at) Microsoft
Coroutines for Kotlin Multiplatform in Practise
IoT Best practices
Kotlin v1.1.2
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
GPars For Beginners
Beautiful code instead of callback hell using ES6 Generators, Koa, Bluebird (...
JS everywhere 2011
All you need to know about the JavaScript event loop
Exploring Clojurescript
Kotlin for backend development (Hackaburg 2018 Regensburg)
JS Fest 2018. Сергей Пузанков. E2E-тестирование фронтенда c Hermione
Java Week9(B) Notepad
An Introduction to Reactive Cocoa
Ad

Similar to Kotlin wonderland (20)

PPTX
A TypeScript Fans KotlinJS Adventures
PDF
Davide Cerbo - Kotlin loves React - Codemotion Milan 2018
PDF
Kotlin Programming Concise Expressive And Powerful Theophilus Edet
PDF
Rapid Web API development with Kotlin and Ktor
PPTX
Why to Choose Kotlin in 2023 to Build Mobile Apps Faster?
PDF
Full-Stack Application Development Experience in Kotlin, Sergey Shkredov, New...
PDF
Kotlin - A Beginner’s Guide__________________
PPTX
Desarrollo multiplataforma con kotlin | UPV 2018
PDF
What is Kotlin.pdf
PDF
Programming with Kotlin
PDF
Kotlin tutorial
PDF
Summer of Tech 2017 - Kotlin/Android bootcamp
PDF
Kotlin for Web (with Ktor)
PDF
Kotlin: A pragmatic language by JetBrains
PPTX
Introduction to Kotlin Language and its application to Android platform
PDF
TDC2017 | Florianopolis - Trilha DevOps How we figured out we had a SRE team ...
PDF
Kotlin everywhere: share your kotlin code across platforms
PPTX
Introduction to Kotlin
PDF
Isomorphic Kotlin
A TypeScript Fans KotlinJS Adventures
Davide Cerbo - Kotlin loves React - Codemotion Milan 2018
Kotlin Programming Concise Expressive And Powerful Theophilus Edet
Rapid Web API development with Kotlin and Ktor
Why to Choose Kotlin in 2023 to Build Mobile Apps Faster?
Full-Stack Application Development Experience in Kotlin, Sergey Shkredov, New...
Kotlin - A Beginner’s Guide__________________
Desarrollo multiplataforma con kotlin | UPV 2018
What is Kotlin.pdf
Programming with Kotlin
Kotlin tutorial
Summer of Tech 2017 - Kotlin/Android bootcamp
Kotlin for Web (with Ktor)
Kotlin: A pragmatic language by JetBrains
Introduction to Kotlin Language and its application to Android platform
TDC2017 | Florianopolis - Trilha DevOps How we figured out we had a SRE team ...
Kotlin everywhere: share your kotlin code across platforms
Introduction to Kotlin
Isomorphic Kotlin
Ad

Recently uploaded (20)

PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Classroom Observation Tools for Teachers
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Basic Mud Logging Guide for educational purpose
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Insiders guide to clinical Medicine.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Pre independence Education in Inndia.pdf
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
Cell Structure & Organelles in detailed.
PDF
RMMM.pdf make it easy to upload and study
PDF
Anesthesia in Laparoscopic Surgery in India
Final Presentation General Medicine 03-08-2024.pptx
Classroom Observation Tools for Teachers
PPH.pptx obstetrics and gynecology in nursing
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
TR - Agricultural Crops Production NC III.pdf
Microbial disease of the cardiovascular and lymphatic systems
Abdominal Access Techniques with Prof. Dr. R K Mishra
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Basic Mud Logging Guide for educational purpose
Complications of Minimal Access Surgery at WLH
Microbial diseases, their pathogenesis and prophylaxis
Insiders guide to clinical Medicine.pdf
GDM (1) (1).pptx small presentation for students
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Pre independence Education in Inndia.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Cell Structure & Organelles in detailed.
RMMM.pdf make it easy to upload and study
Anesthesia in Laparoscopic Surgery in India

Kotlin wonderland