Javy

JS to WebAssembly toolchain

README

Javy


A JavaScript to Webassembly toolchain
A Bytecode Alliance project

About this repo


Introduction: Run your JavaScript on WebAssembly. Javy takes your JavaScript code, and executes it in a WebAssembly embedded JavaScript runtime. Javy can create _very_ small Wasm modules in the 1 to 16 KB range with use of dynamic linking. The default static linking produces modules that are at least 869 KB in size.

Runtime requirements


When running the official Javy binary on Linux, glibc 2.31 or greater must be available. You may need to update the version of your operating system if you are using an older version of glibc.

Contributing


We welcome feedback, bug reports and bug fixes. We're also happy to discuss feature development but please discuss the features in an issue before contributing.

Read our contribution documentation for additional information on contributing to Javy.

Build


- Stable Rust (rustup install stable && rustup default stable)
- wasm32-wasi, can be installed via rustup target add wasm32-wasi
- cmake, depending on your operating system and architecture, it might not be
  installed by default. On Mac it can be installed with homebrew via `brew
  install cmake`
- Rosetta 2 if running MacOS on Apple Silicon, can be installed via
  softwareupdate --install-rosetta
- Install the wasi-sdk by running make download-wasi-sdk in the top-level directory in this repository

Development


- wasmtime-cli, can be installed via cargo install wasmtime-cli (required for
  cargo-wasi)
- cargo-wasi, can be installed via cargo install cargo-wasi
- wizer, can be installed via cargo install wizer --all-features
- cargo-hack, can be installed via cargo +stable install cargo-hack --locked

Building


After all the dependencies are installed, run make in the top-level directory of this repository. You
should now have access to the executable in target/release/javy.

Alternatively you can run make && cargo install --path crates/cli.
After running the previous command you'll have a global installation of the
executable.

Compiling to WebAssembly


Define your JavaScript like:

  1. ```javascript
  2. // Read input from stdin
  3. const input = readInput();
  4. // Call the function with the input
  5. const result = foo(input);
  6. // Write the result to stdout
  7. writeOutput(result);

  8. // The main function.
  9. function foo(input) {
  10.     return { foo: input.n + 1, newBar: input.bar + "!" };
  11. }

  12. // Read input from stdin
  13. function readInput() {
  14.     const chunkSize = 1024;
  15.     const inputChunks = [];
  16.     let totalBytes = 0;

  17.     // Read all the available bytes
  18.     while (1) {
  19.         const buffer = new Uint8Array(chunkSize);
  20.         // Stdin file descriptor
  21.         const fd = 0;
  22.         const bytesRead = Javy.IO.readSync(fd, buffer);

  23.         totalBytes += bytesRead;
  24.         if (bytesRead === 0) {
  25.             break;
  26.         }
  27.         inputChunks.push(buffer.subarray(0, bytesRead));
  28.     }

  29.     // Assemble input into a single Uint8Array
  30.     const { finalBuffer } = inputChunks.reduce((context, chunk) => {
  31.         context.finalBuffer.set(chunk, context.bufferOffset);
  32.         context.bufferOffset += chunk.length;
  33.         return context;
  34.     }, { bufferOffset: 0, finalBuffer: new Uint8Array(totalBytes) });

  35.     return JSON.parse(new TextDecoder().decode(finalBuffer));
  36. }

  37. // Write output to stdout
  38. function writeOutput(output) {
  39.     const encodedOutput = new TextEncoder().encode(JSON.stringify(output));
  40.     const buffer = new Uint8Array(encodedOutput);
  41.     // Stdout file descriptor
  42.     const fd = 1;
  43.     Javy.IO.writeSync(fd, buffer);
  44. }
  45. ```

Create a WebAssembly binary from your JavaScript by:

  1. ```bash
  2. javy compile index.js -o destination/index.wasm
  3. ```

For more information on the commands you can run javy --help

You can then execute your WebAssembly binary using a WebAssembly engine:

  1. ```bash
  2. $ echo '{ "n": 2, "bar": "baz" }' | wasmtime index.wasm
  3. {"foo":3,"newBar":"baz!"}%  
  4. ```

Invoking Javy-generated modules programatically


Javy-generated modules are by design WASI only and follow the command pattern. Any input must be passed viastdin and any output will be placed in stdout. This is especially important when invoking Javy modules from a custom embedding.

In a runtime like Wasmtime, [wasmtime-wasi](
https://docs.rs/wasmtime-wasi/latest/wasmtime_wasi/struct.WasiCtx.html#method.set_stdin)
can be used to set the input and retrieve the output.

Creating and using dynamically linked modules


An important use for Javy is for when you may want or need to generate much smaller Wasm modules. Using the -d flag when invoking Javy will create a dynamically linked module which will have a much smaller file size than a statically linked module. Statically linked modules embed the JS engine inside the module while dynamically linked modules rely on Wasm imports to provide the JS engine. Dynamically linked modules have special requirements that statically linked modules do not and will not execute in WebAssembly runtimes that do not meet these requirements.

To successfully instantiate and run a dynamically linked Javy module, the execution environment must provide a javy_quickjs_provider_v1 namespace for importing that links to the exports provided by the javy_quickjs_provider.wasm module. Dynamically linked modules cannot be instantiated in environments that do not provide this import.

Dynamically linked Javy modules are tied to QuickJS since they use QuickJS's bytecode representation.

Obtaining the QuickJS provider module


The `javy_quickjs_provider.wasm` module is available as an asset on the Javy release you are using. It can also be obtained by running `javy emit-provider -o ` to write the module into ``.

Creating and running a dynamically linked module on the CLI


  1. ```
  2. $ echo 'console.log("hello world!");' > my_code.js
  3. $ javy compile -d -o my_code.wasm my_code.js
  4. $ javy emit-provider -o provider.wasm
  5. $ wasmtime run --preload javy_quickjs_provider_v1=provider.wasm my_code.wasm
  6. hello world!
  7. ```

Using quickjs-wasm-rs to build your own toolchain


The quickjs-wasm-rs crate that is part of this project can be used as part of a Rust crate targeting Wasm to customize how that Rust crate interacts with QuickJS. This may be useful when trying to use JavaScript inside a Wasm module and Javy does not fit your needs as quickjs-wasm-rs contains serializers that make it easier to send structured data (for example, strings or objects) between host code and Wasm code.

Releasing


1. Update the root Cargo.toml with the new version
2. Create a tag for the new version like v0.2.0
  1. ```
  2. git tag v0.2.0
  3. git push origin --tags
  4. ```
3. Create a new release from the new tag in github here.
4. A GitHub Action will trigger for publish.yml when a release is published (i.e. it doesn't run on drafts), creating the artifacts for downloading.