I am just trying to do a simple proof of concept to create a javascript library from a kotlin MP project. Creating a new MP project and building produces a build/distributions/MyProject.js file, I copy and include this in an html <script> and able to do console.log(MyProject) but not sure if its working or how to use it beyond that. I tried the things suggested like "@JsName" or including the package name. For example the default project it creates has a class "Sample" and object "Platform" with package "sample". In Javascript things like MyProject.sample or .Sample or .Platform are all undefined. Inspecting the object does not appear to have anything I recognize either. Using MP 1.3.72 if that matters.