最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - No kotlin.js file output by kotlinc-js - Stack Overflow

programmeradmin0浏览0评论

Currently trying to get a Kotlin "Hello, World" to pile to JS via the mand line. I've followed the tutorial:

.html

I'm seeing the Javascript files being generated, but I'm missing the kotlin.js file that I would expect to see per: .html

The first few lines of the generated JS files read: if (typeof kotlin === 'undefined') { throw new Error("Error loading module 'sample-library'. Its dependency 'kotlin' was not found. Please, check whether 'kotlin' is loaded prior to 'sample-library'."); }

so it's clear that the it's meant to be run with a file that instantiates kotlin. Any ideas why I'm not seeing it? I'm following the tutorial exactly as written. I'm using the latest version of the piler from homebrew, which is 1.1.2.2

Currently trying to get a Kotlin "Hello, World" to pile to JS via the mand line. I've followed the tutorial:

https://kotlinlang/docs/tutorials/javascript/getting-started-mand-line/mand-line-library-js.html

I'm seeing the Javascript files being generated, but I'm missing the kotlin.js file that I would expect to see per: https://kotlinlang/docs/tutorials/javascript/kotlin-to-javascript/kotlin-to-javascript.html

The first few lines of the generated JS files read: if (typeof kotlin === 'undefined') { throw new Error("Error loading module 'sample-library'. Its dependency 'kotlin' was not found. Please, check whether 'kotlin' is loaded prior to 'sample-library'."); }

so it's clear that the it's meant to be run with a file that instantiates kotlin. Any ideas why I'm not seeing it? I'm following the tutorial exactly as written. I'm using the latest version of the piler from homebrew, which is 1.1.2.2

Share Improve this question edited May 24, 2017 at 1:24 guyIntrepid asked May 24, 2017 at 1:04 guyIntrepidguyIntrepid 5485 silver badges8 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

As described here, yes, you'll need to include kotlin.js before you can run your own Kotlin code. This file contains the Kotlin runtime and standard library.

If you're doing this from the mand line, you can find kotlin.js in the lib folder of the piler, inside kotlin-stdlib-js.jar (which you can just open as a regular .zip file).

发布评论

评论列表(0)

  1. 暂无评论