mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Run JavaScript code from Ruby
lib | ||
test | ||
Rakefile | ||
readme.md |
ExecJS
ExecJS lets you run JavaScript code from Ruby. It automatically picks the best runtime available to evaluate your JavaScript program, then returns the result to you as a Ruby object.
ExecJS supports these runtimes:
- therubyracer - Google V8 embedded within Ruby for exceptional performance
- Node.js
- Google V8
- Apple JavaScriptCore
- Mozilla Spidermonkey
- Mozilla Rhino
- Microsoft Windows Script Host (JScript)
A short example:
require "execjs"
ExecJS.eval "'red yellow blue'.split(' ')"
# => ["red", "yellow", "blue"]