Bytecoder icon indicating copy to clipboard operation
Bytecoder copied to clipboard

Framework to interpret and transpile JVM bytecode to JavaScript, OpenCL or WebAssembly.

Results 63 Bytecoder issues
Sort by recently updated
recently updated
newest added

`String` has a very lackluster implementation - many methods are missing completely or have a no-op implementation. Please implement the whole of `java.lang.String` since it is one of the most...

runtime

I only want to be able to run my favorite Java based applications on the browser as effortless as possible. I don't want to build teavm from source myself. An...

help wanted
question

The ` java.util.regex` api is not supported at all besides the `Pattern.compile(...)` > I am working in an implementation backed by ` RegExp` for JS

runtime

` String.replace` (as well as all overloads) are widely used and should be supported ` ` ` Caused by: java.lang.IllegalStateException: No such method : java/lang/String.replace(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String; ` ` ` I assume...

runtime

Wasm compilation fails when using `LocalDateTime.now()` #### Env ``` Java: OpenJDK 20 bytecoder = "2023-04-05" ``` ### Error ``` Caused by: java.lang.IllegalStateException: No such method : Parsing method body of...

enhancement

Hi Team, I encounter below error for my project, which seems to be due to AtomicInteger . Please find the below error trace by ByteCoder ```java public class Test11 {...

Hello ! I'm currently trying to process image data on the browser using java code compiled to WASM. To do so, I'm looking for a way to pass an Uint8Array...

Hi, I'm looking into using Bytecoder to run some existing java code in the browser. That code uses threads, exceptions, and wants to load resources via class.getResourceAsStream(). I don't know...