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

61 lines
1.6 KiB
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
2011-02-07 11:07:54 -05:00
* [therubyrhino](https://github.com/cowboyd/therubyrhino) - Mozilla
Rhino embedded within JRuby
2011-02-06 20:39:30 -05:00
* [Node.js](http://nodejs.org/)
2011-02-07 11:07:54 -05:00
* Apple JavaScriptCore - Included with Mac OS X
2011-02-07 18:04:05 -05:00
* [Microsoft Windows Script Host](http://msdn.microsoft.com/en-us/library/9bbdkx3k.aspx) (JScript)
2011-02-06 15:22:40 -05:00
A short example:
2014-05-19 09:56:17 -04:00
``` ruby
require "execjs"
ExecJS.eval "'red yellow blue'.split(' ')"
# => ["red", "yellow", "blue"]
```
2011-03-10 18:21:55 -05:00
A longer example, demonstrating how to invoke the CoffeeScript compiler:
2014-05-19 09:56:17 -04:00
``` ruby
require "execjs"
require "open-uri"
source = open("http://jashkenas.github.com/coffee-script/extras/coffee-script.js").read
2011-03-10 18:21:55 -05:00
2014-05-19 09:56:17 -04:00
context = ExecJS.compile(source)
context.call("CoffeeScript.compile", "square = (x) -> x * x", :bare => true)
# => "var square;\nsquare = function(x) {\n return x * x;\n};"
```
2011-03-10 18:38:33 -05:00
# Installation
2014-05-19 09:56:17 -04:00
```
$ gem install execjs
```
2011-03-10 18:38:33 -05:00
# FAQ
### Why can't I use CommonJS `require()` inside ExecJS?
ExecJS provides a lowest common denominator interface to any JavaScript runtime.
Use ExecJS when it doesn't matter which JavaScript interpreter your code runs
in. If you want to access the Node API, you should check another library like
[commonjs.rb](https://github.com/cowboyd/commonjs.rb) designed to provide a
consistent interface.
2011-03-10 18:38:33 -05:00
# License
2014-05-19 09:56:39 -04:00
Copyright (c) 2014 Sam Stephenson and Josh Peek.
2011-03-10 18:38:33 -05:00
Released under the MIT license. See `LICENSE` for details.