Skip to content

bytecodealliance/endive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,417 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Endive


A Bytecode Alliance hosted project

Website | Getting started | Blog | Contributing

Interpreter Test Results Compiler Test Results WASI Test Results

Zulip

Endive is a JVM native WebAssembly runtime. It allows you to run WebAssembly programs with zero native dependencies or JNI. Endive can run Wasm anywhere that the JVM can go. It is designed with simplicity and safety in mind.

Endive is a fork of Chicory by Dylibso, Inc. We thank Dylibso for the incubation period and their foundational work on this project.

Reach out to us: let us know what you are building with Endive. Join our Zulip chat.

Get started now with the official documentation

Why?

There are a number of mature Wasm runtimes to choose from to execute a Wasm module. To name a few v8, wasmtime, wasmer, wasmedge, wazero etc.

Although these can be great choices for running a Wasm application, embedding them into your existing Java application has some downsides. Because these runtimes are written in C/C++/Rust/etc, they must be distributed and run as native code. This causes two main friction points:

1. Distribution

If you're distributing a Java library (jar, war, etc), you must now distribute along with it a native object targeting the correct architecture and operating system. This matrix can become quite large. This eliminates a lot of the simplicity and original benefit of shipping Java code.

2. Runtime

At runtime, you must use FFI to execute the module. When you do, you're effectively escaping the safety and observability of the JVM. Having a pure JVM runtime means all your security and memory guarantees, and your tools, can stay in place.

Goals

  • Be the default runtime for Wasm on the JVM
  • Be as safe as possible
  • Make it easy to run Wasm in any JVM environment without native code, including very restrictive environments
  • Fully support the core Wasm spec
  • Make integration with Java (and other host languages) easy and idiomatic

Roadmap

Endive development builds on years of work started in September 2023 as Chicory. If you have an interest in working on any of these please reach out in Zulip!

Completed

  • Wasm binary parser
  • Simple bytecode interpreter
  • Generate JUnit tests from wasm test suite
  • All tests green with the interpreter (correctness)
  • Validation logic (safety)
  • v1.0 API (stability and dx)
  • Decoupled interpreter and compiler "engines"
  • Build-time compiler passes all the same specs as interpreter
  • WASIp1 Support (including test gen)
  • SIMD Support
  • Tail Call (interpreter and compiler)
  • Compiler out of experimental
  • Exception Handling
  • Threads Support
  • Extended Constant Expressions
  • GC support
  • Multi-Memory Support

Ongoing

  • Performance
  • WASIp2 Support

On the press

Prior Art

Who uses Endive?

See ADOPTERS.md for the full list of organizations and projects using Endive.

About

A JVM native WebAssembly runtime

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Contributors