我正在 Kotlin-Multiplatform 中启动一个项目。通过 Java 访问资源文件夹非常简单,但我不知道如何通过面向 Node.js 的 JS 访问它。
在测试过程中,我发现资源文件存储在一个单独的文件夹中。如果我没错的话:
build/js
|-- package
| |--project
| |--project-test \\tests are executed here via calling __dirname in node
|
|--processedResources
|-- testfile.txt \\ files in the resource folder are stored here
我想知道:它是如何通过 JS/Node 完成的?