1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
Run JavaScript code from Ruby
Find a file
2011-02-07 12:48:15 -06:00
lib Add which support for Windows 2011-02-07 12:48:15 -06:00
test Add Rhino runtime 2011-02-07 09:01:34 -06:00
execjs.gemspec Shift the paths aronud some more 2011-02-07 12:35:13 -06:00
Rakefile Initial commit 2011-02-06 14:22:40 -06:00
readme.md Update readme for therubyrhino 2011-02-07 10:08:25 -06:00

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:

A short example:

require "execjs"
ExecJS.eval "'red yellow blue'.split(' ')"
# => ["red", "yellow", "blue"]