[Cheat Sheet] [FAQ] [API Reference] [Complete Examples] [Community Showcase]
By default, puts
output goes to STDOUT
which is a JavaScript console.log
function. You can override it by setting $stdout
to a Ruby object which has write
method.
$stdout = Object.new.tap do |obj|
def obj.write(str)
JS.global[:document].write(str)
end
end
puts "Hello, world!" # => Prints "Hello, world!" to the HTML document
Use wasmtime
Ruby gem.