konsoletyper / teavm

Compiles Java bytecode to JavaScript, WebAssembly and C
https://teavm.org
Apache License 2.0
2.62k stars 262 forks source link

Implement compiling to JavaScript module #786

Open konsoletyper opened 11 months ago

konsoletyper commented 11 months ago

Recent version of TeaVM produce JS modules. It's possible to import external modules, but it's impossible to control export functions, TeaVM modules always produce main method as an export. A new mechanism of compiling modules instead of applications with single main entry point required. This may depend on JavaScript export API, see #785