Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zig-java/jaz
A JVM implementation in Zig!
https://github.com/zig-java/jaz
java jaz jvm zig
Last synced: about 1 month ago
JSON representation
A JVM implementation in Zig!
- Host: GitHub
- URL: https://github.com/zig-java/jaz
- Owner: zig-java
- Created: 2021-05-29T18:29:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T06:18:49.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T22:27:26.813Z (5 months ago)
- Topics: java, jaz, jvm, zig
- Language: Zig
- Homepage:
- Size: 182 KB
- Stars: 83
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-zig - jaz🗒️A JVM implementation in Zig!
README
# jaz
**Ja**va in **Z**ig.
Parses Java class files and bytecode.
## Taking it for a spin
To try out jaz for yourself, install jvm 16, then run the following commands:
```bash
# Compiles Java source
javac test/src/jaztest/*.java# Adds user path to javastd
echo "pub const conf = .{.javastd_path = \"/path/to/javastd\"};" > src/conf.zig# Runs demo
zig build run
```