Writing JavaScript code with Kotlin using Gradle

Last Updated:  January 23, 2020 | Published: December 27, 2019

With the past KotlinConf 2019 a lot of great updates for the Kotlin ecosystem were announced. Sebastian Aigner gave an update on using Kotlin to target JavaScript in the browser in his The State of Kotlin JS talk. In this talk, he announced that the kotlin2js and Kotlin Frontend plugin will be deprecated in favor of the kotlin.js plugin. Given this new plugin, I've created a simple introduction to writing JavaScript code with Kotlin using Gradle.

Gradle project setup

The recommended build tool for compiling Kotlin to JavaScript is Gradle. Using Maven as the Kotlin build tool is also supported, but takes more steps.

For this example, I'm using the Kotlin DSL for Gradle. As a result, the build.gradle.kts build script looks like the following:

You can achieve the same with the Groovy syntax for Gradle.

The most important part of the build script is the new kotlin.js plugin. Prior to this plugin, there were several ways to set up a Kotlin JavaScript project with Gradle. This was sometimes confusing and required more configuration steps.

Besides the stdlib-js library, I'm including the kotlinx-html-js dependency to create HTML output using a Kotlin DSL. Furthermore, there is a dedicated coroutines library for JavaScript kotlinx-coroutines-core-js. This plays nicely together with the promise based browser APIs.

Given the kotlin.js plugin, Webpack is properly configured and no manual environment management is necessary. Once you build the project, the JavaScript code is available at build/js.

Write JavaScript source code with Kotlin

To demonstrate the usage of Kotlin to generate JavaScript code for the browser, I'll populate an HTML table. The data for the table is fetched from a REST API using the Fetch API of the browser.

As we have full access to the browser API within Kotlin, we can register a lambda to run once the entire page is loaded. Within this lambda, I'm creating a reference to the body of the HTML table and fill it with content once the API call successfully returns data.

Given the kotlinx-html-js library, you can write the HTML output with a Kotlin DSL. This provides typesafe access to the HTML tags and due to the DSL approach reads well:

As already mentioned, the promise based browser APIs plays nicely together with Kotlin's coroutines. Hence we can escape the callback hell and write the following concise code. This fetches sample data from a remote API and converts the body to JSON. To further work with typesafe objects, I'm casting it to a Kotlin class:

On top of this, you can also access other browser APIs based on the W3C standard with Kotlin. Sebastian Aigner provides a nice example of this in his talk. He draws a random canvas to the screen with only ten lines of Kotlin code:

JavaScript result in the browser

To actually see the outcome of the Kotlin code above, I'm using a simple index.html. Besides the CSS file and JavaScript files for Bootstrap, it includes the generated JavaScript file from Kotlin:

You can run the example in a hot-reloading mode with:

This offers a great development experience and allows us to access the result at http://localhost:8080:

Kotlin JavaScript Table Example

The Canvas example from Sebastian Aigner looks like the following:

Access Browser API with Kotlin JavaScript

The plugin also generates proper source maps to improve the debugging experience in the browser:

Debug Kotlin JavaScript code in the Browser

Kotlin for JavaScript with Gradle outlook

Sharing business logic for multiple platforms (Andriod, JavaScript, native and JVM) is one of the key areas Kotlin is trying to access. With these changes, the multiplatform goal definitely makes a big step forward in a sense of usability.

With the new plugin, the setup is far easier than before. In addition, you don't have to manually configure anything for Webpack or Yarn to work. The tooling around JavaScript with Kotlin using Gradle also evolves to provide a great developer experience.

There is way more to come for JavaScript with Kotlin. Project dukat aims to convert TypeScript definitions to Kotlin automatically. This is currently in experimental mode but will evolve in the future.

For more information, have a look at the official documentation. There is also a great tutorial for using Kotlin to build a React application available at the JetBrains homepage. Currently, this tutorial is not using the kotlin.js plugin (update for the post is coming in early 2020).

Furthermore, watch the great talk of Sebastian Aigner YouTube for the official announcements.

You can find the source code for this Kotlin + JavaScript + Gradle example on GitHub and further Kotlin tutorials on my blog.

Have fun writing JavaScript code with Kotlin using Gradle,

Phil

{"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}
>