Project

esruby

0.0
No commit activity in last 3 years
No release in over 3 years
This project brings mruby to the browser. It uses emscripten to compile the mruby source code into JavaScript (ECMAScript) and runs in the browser.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.7
 Project Readme

esruby

This project brings mruby to the browser. It uses emscripten to compile the mruby source code into JavaScript (ECMAScript) and runs in the browser. It is heavily based off webruby but has been adjusted to work with the updates to emscripten and mruby.

Install

esruby depends on emsdk to provide a tool chain consisting of emscripten and LLVM. Although the tool chain is available from apt-get we will need to build emscripten from source using my branch as I have introduced some new features that have not made it into the release yet.

  • we will start with a clean instance of Ubuntu 16.04 with ruby MRI installed
  • sudo apt-get install build-essential cmake python nodejs
  • sudo apt-get install default-jre-headless # you will need a recent version of java if you want to run Closure Compiler when compiling any apps with optimization enabled
  • cd to a directory where you want emsdk downloaded
  • git clone https://github.com/juj/emsdk.git
  • cd emsdk
  • git reset --hard 313d5ef # optional, but it may help if you find that master is too new for my fork
  • as per the documentation we will first install from the main repositories then replace emscripten with my fork:
  • ./emsdk install sdk-incoming-64bit
  • ./emsdk activate sdk-incoming-64bit
  • cd emscripten/incoming
  • git remote add fork https://github.com/robfors/emscripten.git
  • git fetch fork esruby
  • git checkout -b esruby fork/esruby
  • cd ../..
  • source ./emsdk_env.sh # calling this will add necessary paths to bash
  • optional: make the last command persistent by adding
    [ -f /path_to_emsdk/emsdk_env.sh ] && source /path_to_emsdk/emsdk_env.sh > /dev/null 2>&1
    to your .bashrc and .profile
  • verify the emsdk environment has been successfully setup with emcc -v, errors in red are normal
  • install this gem with gem install esruby

Try

  • create a new esruby project with esruby new project
  • cd project
  • build the project with esruby build config.rb
  • you will now have www/app.js and www/index.html
  • a simple way to serve these files would be ruby -run -e httpd www -p 4444
  • the app with be available at http://localhost:4444

Binding with JS

Explore my esruby-bind gem that binds the Ruby and JS environments together.

Documentation

  • Kernel#exit : returns execution to the JavaScript event loop. It will skip the rest of the Ruby code by raising and capturing an exception inherited from Exception. It will not shutdown the interpreter, therefore any future calls to the Ruby environment from JavaScript will function as expected.

License

This project is distributed under the MIT License. See LICENSE for further details.