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-06 20:13:24 -06:00
lib Add Spidermonkey runtime 2011-02-06 20:13:24 -06:00
test Add Spidermonkey runtime 2011-02-06 20:13:24 -06:00
Rakefile Initial commit 2011-02-06 14:22:40 -06:00
readme.md Add V8 runtime 2011-02-06 19:39:30 -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"]