Spicing Up Embedded JavaScript

One thing that I absolutely adore is the sheer embeddability of JavaScript. It’s a (comparatively) simple language that is fiercely flexible. I tend to liken JavaScript to water – alone it’s painfully simple but it can take the form of its container – and mixing it with anything enhances its flavor.

Since JavaScript, alone, is so dumb (we’ve become spoiled by browsers which provide DOM, setTimeout/setInterval, and even a global object reference – none of which are necessarily required my an ECMAScript implementation) we must rely upon the spice of ‘larger’ languages to help it gain some taste.

We can start by taking a look at some of the most popular languages that are available today: Python, Perl, PHP, Ruby, and Java — all of which have, at least, one embeddable JavaScript interpreter.

One thing is the same in all the interpreter implementations, as well, they all have the ability to introduce (at least) simple objects into interpreter (from the parent language) and extract values again. Sometimes this may be as simple as executing a JavaScript function and getting its return value (which is often translated from its internal JavaScript form back into the native language).

There’s a couple points upon which I like to evaluate the embeddability of a JavaScript interpreter, specifically:

  1. Object Translation: If objects/values are passed to/from the interpreter to/from the native language – is that translation handled automatically?
  2. Simplicity: How hard is it to get up-and-running? (Is extra compilation required or is it written using native language code?)
  3. Bleed-through: Can JavaScript communicate to the base language or is it a one-way-street?

The first point is the easiest one to find compatibility with – virtually all embeddable JavaScript interpreters do some form of object translation. Some do it better (like JE and Rhino) but it generally shouldn’t be a problem for simple scripts.

PHP

» PHPJS

A flexible, pure-PHP, JavaScript interpreter that even accepts compiling to an intermediary bytecode. There is no bleed-through but good object translation.

include "js.php";

# Introduce a new JavaScript function, named print,
# which calls a PHP function
function show($msg) {
  echo "$msg\n";
}

$jsi_vars["print"] = "show";

# Add in a new pure-JavaScript function which calls
# our previously-introduced print function
jsc::compile("function alert(msg){ print('Alert:' + msg); }");

# Prints out 'Alert: text'
js_exec("alert('text');");

» J2P5: Pure-PHP ECMAScript Engine

Probably the simplest of the available interpreters – there doesn’t appear to be a clear way of communicating from JavaScript-to-PHP (or vice versa). Although, it is implemented in pure-PHP which allows for some nice cross-platform compatibility.

include “js/js.php”;

$script = <<Perl

» JavaScript::SpiderMonkey

An embedding of Mozilla’s Spidermonkey JavaScript engine into Perl. Since it uses Spidermonkey it’ll require that extra source code and compilation. Object translation is good but there’s no bleed-through (JavaScript calling native Perl functionality that isn’t explicitly defined).

use JavaScript::SpiderMonkey;

# Instantiate the interpreter
my $j = JavaScript::SpiderMonkey->new();

# Introduce a new JavaScript function, named print,
# which calls a Perl function
$j->function_set("print", sub { print @_, "\n" } );

# Add in a new pure-JavaScript function which calls
# our previously-introduced print function
$j->eval("function alert(msg){ print('Alert:' + msg); }");

# Prints out 'Alert: text'
$j->eval("alert('text');");

» JE: Pure-Perl ECMAScript Engine

A pure-Perl JavaScript engine – shows incredible promise (probably my favorite new engine in addition to Rhino). Has tremendous potential (including the ability to serialize the runtime environment!).

use JE;

# Instantiate the interpreter
my $j = new JE;

# Introduce a new JavaScript function, named print,
# which calls a Perl function
$j->new_function(print => sub { print @_, “\n” } );

# Add in a new pure-JavaScript function which calls
# our previously-introduced print function
$j->eval(“function alert(msg){ print(‘Alert:’ + msg); }”);

# Prints out ‘Alert: text’
$j->method(alert => “text”);

# So does this
$j->eval(“alert(‘text’);”);

# Introduce the ability to do remote requests
use Net::FTP;

$j->bind_class( package => “Net::FTP”, name => “FTP” );

# Execute native Perl functionality (FTP module)
# directly from JavaScript
$j->eval(<<'--end--'); var connect = new FTP("ftp.mozilla.org"); connect.get("index.html"); --end--[/perl] Note the extreme bleed-through that you can achieve with JE (in addition to excellent object translation).

Java

» Rhino

Probably one of the most famous embeddable JavaScript implementations. Implemented in pure Java has excellent object translation and perfect bleed-through. The bleeding can even be controlled explicitly at runtime (to create a more confined environment).

In the following code (using in some of the jQuery build system) two functions are defined which utilize a number of native Java packages – all without ever writing a single line of Java code.

importPackage(java.io);

function writeFile( file, stream ) {
  var buffer = new PrintWriter( new FileWriter( file ) );
  buffer.print( stream );
  buffer.close();
}

function read( file ) {
  var f = new File(file);
  var reader = new BufferedReader(new FileReader(f));
  var line = null;
  var buffer = new java.lang.StringBuffer(f.length());
  while( (line = reader.readLine()) != null) {
    buffer.append(line);
    buffer.append("\n");
  }
  return buffer.toString();
}

Python

» Python-Spidermonkey

Previously this was one of the most depressing embedding efforts (and, really, the only one available for Python) but it has since had some new life blown into it – which is much appreciated. It supports decent object translation and bleed-through (including the ability to call native classes, much like in JE).

from spidermonkey import Runtime

j = RunTime().new_context()

# Introduce a new JavaScript function, named print,
# which calls a Python function
j.bind_callable("print", lambda msg: print(msg));

# Add in a new pure-JavaScript function which calls
# our previously-introduced print function
j.eval_script("function alert(msg){ print('Alert:' + msg); }");

# Prints out 'Alert: text'
j.eval_script("alert('text');");

Ruby

While there was a previous effort to embed Spidermonkey in Ruby it is largely defunct now, superseded by the new (strangely named) Johnson project.

» Johnson

This is a, relatively, new project that’s working to completely overhaul how communication is currently done in-between Ruby and JavaScript (using Spidermonkey to power the engine). There is complete bleed-through: Ruby can dig in and manipulate JavaScript objects at run-time and JavaScript can call back and access native Ruby functionality. Additionally they’re examining the ability to provide native browser environments using the env.js script that I created last year. While the cross-platform ease-of-use isn’t there yet the project absolutely has a ton of potential.

require "johnson"

j = Johnson::Runtime.new

# Introduce a new JavaScript function, named print,
# which calls a Ruby function
j.print = lambda {|msg| puts msg};

# Add in a new pure-JavaScript function which calls
# our previously-introduced print function
j.evaluate("function alert(msg){ print('Alert:' + msg); }");

# Prints out 'Alert: text'
j.evaluate("alert('text');");

Update: Another example of Johnson in action from John Barnette:

require "johnson"

class Monkey
  def eat
    puts "Nom, nom, nom, bananas!"
  end
end

j = Johnson::Runtime.new

# toss a monkey into the runtime
m = Monkey.new
j[:m] = m

# add a JSland function to our monkey...
j.evaluate("m.chow = function() { this.eat() }")

# ...and now it's available as an instance method on our native Ruby object!
m.chow

There’s a ton of potential in all of these projects – providing interesting features for blurring the lines in-between JavaScript and different host languages. For your next project it should be pretty easy to find a solution to embedding JavaScript as your quick-and-dirty scripting language of choice.

Posted: June 15th, 2008


Subscribe for email updates

14 Comments (Show Comments)



Comments are closed.
Comments are automatically turned off two weeks after the original post. If you have a question concerning the content of this post, please feel free to contact me.


Secrets of the JavaScript Ninja

Secrets of the JS Ninja

Secret techniques of top JavaScript programmers. Published by Manning.

John Resig Twitter Updates

@jeresig / Mastodon

Infrequent, short, updates and links.