Kotlin JavaScript Overview

Kotlin JavaScript Overview

Kotlin provides the ability to target JavaScript. It does so by transpiling Kotlin to JavaScript. The current implementation targets ECMAScript 5.1 but there are plans to eventually target ECMAScript 2015 also.

When you choose the JavaScript target, any Kotlin code that is part of the project as well as the standard library that ships with Kotlin is transpiled to JavaScript. However, this excludes the JDK and any JVM or Java framework or library used. Any file that is not Kotlin will be ignored during compilation.

The Kotlin compiler tries to comply with the following goals:

  • Provide output that is optimal in size
  • Provide output that is readable JavaScript
  • Provide interoperability with existing module systems
  • Provide the same functionality in the standard library whether targeting JavaScript or the JVM (to the largest possible degree).

How can it be used

You may want to compile Kotlin to JavaScript in the following scenarios:

  • Creating Kotlin code that targets client-side JavaScript

    • Interacting with DOM elements. Kotlin provides a series of statically typed interfaces to interact with the Document Object Model, allowing creation and update of DOM elements.

    • Interacting with graphics such as WebGL. You can use Kotlin to create graphical elements on a web page using WebGL.

  • Creating Kotlin code that targets server-side JavaScript

    • Working with server-side technology. You can use Kotlin to interact with server-side JavaScript such as node.js

Kotlin can be used together with existing third-party libraries and frameworks, such as JQuery or ReactJS. To access third-party frameworks with a strongly-typed API, you can convert TypeScript definitions from the Definitely Typed type definitions repository to Kotlin using the ts2kt tool. Alternatively, you can use the dynamic type to access any framework without strong typing.

Kotlin is also compatible with CommonJS, AMD and UMD, making interaction with different module systems straightforward.

Getting Started with Kotlin to JavaScript

To find out how to start using Kotlin for JavaScript, please refer to the tutorials.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/reference/js-overview.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部