Hey #Java friends,

I've made a new tool for exploring Java bytecode in an interactive website!
https://byte-me.dev

You can edit and compile programs, upload your own class files, and even explore the JDK core libraries.

Hope you find it useful!

Byte-Me - Java Bytecode Explorer

Compile and explore bytecode from your own classes and JDK core libraries.

Byte-Me.dev
@chriswhocodes Looks great! Any chances of open sourcing the whole website?
@nurkiewicz the bytecode parsing library is already open-sourced https://github.com/chriswhocodes/ClassAct and I will probably open-source my in-memory compiler. I'm still undecided about open-sourcing the webapp parts :)
GitHub - chriswhocodes/ClassAct: Java class file parser and API

Java class file parser and API. Contribute to chriswhocodes/ClassAct development by creating an account on GitHub.

GitHub
@chriswhocodes @nurkiewicz is there a reason to not use ASM?
@BriceDutheil @nurkiewicz Personal development and learning :) Plus I need some particular functionality in a class lib for JITWatch so I built my own.