ruby-head-wasm-emscripten

2.3.0 • Public • Published

ruby-head-wasm-emscripten

WebAssembly port of CRuby by Emscripten with a thin JavaScript wrapper.

This package distributes the latest master branch of CRuby.

Installation

For installing ruby-head-wasm-emscripten, just run this command in your shell:

$ npm install --save ruby-head-wasm-emscripten@latest
# or if you want the nightly snapshot
$ npm install --save ruby-head-wasm-emscripten@next
# or you can specify the exact snapshot version
$ npm install --save ruby-head-wasm-emscripten@2.3.0-2023-11-26-a

Quick Start

This quick start is for browsers and Node.js environments. See the example project for more details.

import { loadRuby } from "ruby-head-wasm-emscripten";

const main = async () => {
  const args = ["--disable-gems", "-e", "puts 'Hello :)'"];
  console.log(`$ ruby.wasm ${args.join(" ")}`);

  const defaultModule = {
    locateFile: (path) => "./node_modules/ruby-head-wasm-emscripten/dist/" + path,
    setStatus: (msg) => console.log(msg),
    print: (line) => console.log(line),
    arguments: args,
  };

  await loadRuby(defaultModule);
};

main();

APIs

loadRuby(defaultModule): Promise<Module>

This package provides only loadRuby function, which loads the Ruby interpreter and stdlib asynchronously.

This takes a defaultModule object as an argument, which is used as a base for the Emscripten's Module object.

Module object

Module is a global JavaScript object with attributes that Emscripten-generated code calls at various points in its execution.

https://emscripten.org/docs/api_reference/module.html

This package is a thin wrapper of Emscripten module, so you can control the behavior of the interpreter by modifying the Emscripten's Module object.

Building the package from source

For building the package from source, you need to prepare a Ruby build produced by Emscripten, and you need Emscripten SDK in your PATH.

The instructions for building a Ruby targeting WebAssembly are available here.

Then, you can run the following command in your shell:

# Check the directory structure of your Ruby build
$ tree -L 3 path/to/wasm32-unknown-emscripten-full/
path/to/wasm32-unknown-emscripten-full/
├── usr
│   └── local
│       ├── bin
│       ├── include
│       ├── lib
│       └── share
└── var
    └── lib
        └── gems
$ ./build-package.sh path/to/wasm32-unknown-emscripten-full/
Remember to build the main file with  -s FORCE_FILESYSTEM=1  so that it includes support for loading this file package

index.js → dist...
created dist in 3.5s

It's recommended to build on a Docker container with the following command:

$ docker run -it --rm \
    -v $(pwd):/src \
    -v path/to/wasm32-unknown-emscripten-full:/install \
    emscripten/emsdk /bin/bash

Package Sidebar

Install

npm i ruby-head-wasm-emscripten

Weekly Downloads

0

Version

2.3.0

License

MIT

Unpacked Size

37.5 MB

Total Files

5

Last publish

Collaborators

  • kateinoigakukun