1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/readme.md

24 lines
788 B
Markdown
Raw Normal View History

2011-02-06 15:22:40 -05: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:
* [therubyracer](https://github.com/cowboyd/therubyracer) - Google V8
embedded within Ruby for exceptional performance
* [Node.js](http://nodejs.org/)
* [Google V8](http://code.google.com/p/v8/)
* Apple JavaScriptCore
* [Mozilla Spidermonkey](http://www.mozilla.org/js/spidermonkey/)
* [Mozilla Rhino](http://www.mozilla.org/rhino/)
* [Microsoft Windows Script Host](http://msdn.microsoft.com/en-us/library/9bbdkx3k.aspx) (JScript)
A short example:
require "execjs"
2011-02-06 20:09:07 -05:00
ExecJS.eval "'red yellow blue'.split(' ')"
2011-02-06 15:22:40 -05:00
# => ["red", "yellow", "blue"]