Which Javascript engine would you embed in your application?

JavascriptC++Embed

Javascript Problem Overview


I want to embed Javascript in a hobby game engine of mine. Now that we have the 5th generation of Javascript engines out (all blazing fast) I'm curious what engine would you choose to embed in a C++ framework (that includes actual ease of embeding it)?

Note: Just to make it clear, I'm not interested in DOM scripting or writing Javascript in a browser.

Here's a compilation of links so far and some tips from the thread

Just for the record, I love Lua and have already embedded it in game engines about 5 times at work.

However now this is a hobby project, and I think that Javascript being known by most web developers and because its ECMA, Flash and Flex developers, a game engine that uses Javascript and XML for scripting would be more user-friendly and cater to a larger user base (and one that so far has not had a chance to use their skills for games) than one with Lua (and there are plenty of those around!).

Also for the record I'll go with V8 on this one, mostly because I like it's C++ style.

Javascript Solutions


Solution 1 - Javascript

I've tried both SpiderMonkey and V8. With SpiderMonkey, I couldn't get anything to work. I couldn't even get the examples on mozilla.org to compile.

V8 worked out-of-the-box and I got some basic C++ <-> Javascript interaction going pretty quickly. There are some google lists for people using V8, and I found most of my questions answered there already.

Solution 2 - Javascript

Mozilla's SpiderMonkey is fairly easy and well-documented. It's a C API, but it's straightforward to wrap it in C++. It can be compiled to be thread-safe, which is useful for games since you'd likely want to have your main logic in one thread and user interface logic in a second thread.

Google's V8 might be a good choice, since you're using C++, but I have no experience with it yet. According to the documentation (thanks to Daniel James), V8 is not thread-safe, although this may change in the future.

There's also WebKit's SquirrelFish, but I couldn't find a standalone version of that when I was looking earlier.

Solution 3 - Javascript

Is Java Script really the right language for your game? Many of games out there are using the Lua programming language for scripting. It's easy to integrate, it's very small, it compiles on almost every platform and it's easy to learn.

This somewhat off topic, but thinking outside the box can be important to get things right .

Solution 4 - Javascript

I believe that v8 only works on x86, x64 and arm processors at the moment. Which might be a disadvantage.

With regards to thread safety, from include/v8.h:

 * Multiple threads in V8 are allowed, but only one thread at a time
 * is allowed to use V8.  The definition of 'using V8' includes
 * accessing handles or holding onto object pointers obtained from V8
 * handles.  It is up to the user of V8 to ensure (perhaps with
 * locking) that this constraint is not violated.

You can read more in the source file (it looks like doxygen documentation, but they don't seem to have put it up anywhere).

Update: That comment has been removed, probably some time ago. It looks like v8 now has an Isolate object which represents an instance of the engine. A single Isolate instance can only be used in a single thread at a time, but other Isolate instances can be used in other threads at the same time.

Solution 5 - Javascript

When speaking of a scripting engine and c++ you could also consider chaiscript. It is close to ecma script (~Javascript) and very easy to embed in c++.

Seller from the webpage:

> ... ChaiScript, on the other hand, was designed from the ground up > with integration with C++ in mind. > ... > ChaiScript has no meta-compiler, no library dependencies, no build > system requirements and no legacy baggage of any kind. At can work > seamlessly with any C++ functions you expose to it. It does not have > to be told explicitly about any type, it is function centric. > > With ChaiScript you can literally begin scripting your application by > adding three lines of code to your program and not modifying your > build steps at all.

Solution 6 - Javascript

The benchmark that came out when V8 first hit the scene that showed V8 being 1000% (or whatever) faster than other engines was heavily weighted towards favoring engines that were good at recursion. If your code uses a lot of recursion, then V8 might give you a significant advantage, speed-wise. For "real world" (currently, at least) web stuff, SquirrelFish Extreme seems to be the hands down winner at the moment (see my blog post on the topic for the results of my own, informal testing).

As others have pointed out, ease of integration and quality of documentation might prevail over pure speed. It don't mean jack if you don't ship!

Solution 7 - Javascript

I'd wait for TraceMonkey, the next evolution of SpiderMonkey to come out. Faster and better designed. ( Uses code donated from Adobe Flash ).

Tracemonkey prides itself in making repetitious actions much faster by aggressively optimizing the structure at runtime based on actual usage, which aught to be handy for game-augmentation.

Solution 8 - Javascript

Try Javascript .NET:

http://javascriptdotnet.codeplex.com/

It implements Google V8. You can compile and run Javascript directly from .NET code with it, and supply CLI objects to be used by the Javascript code as well. And V8 is probably the best engine ever created in terms of performance, it generates native code from Javascript.

Solution 9 - Javascript

You may also want to look at V8 from Google. It's pretty new, though.

Solution 10 - Javascript

I would keep an eye on v8 as it is screaming fast javascript engine, and i'm sure it will develop cross-platform support as it grows to maturity.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRobert GouldView Question on Stackoverflow
Solution 1 - JavascriptpostfuturistView Answer on Stackoverflow
Solution 2 - JavascriptStephen DekenView Answer on Stackoverflow
Solution 3 - JavascriptLaserallanView Answer on Stackoverflow
Solution 4 - JavascriptDaniel JamesView Answer on Stackoverflow
Solution 5 - JavascriptschoetbiView Answer on Stackoverflow
Solution 6 - JavascriptAndrew HedgesView Answer on Stackoverflow
Solution 7 - JavascriptKent FredricView Answer on Stackoverflow
Solution 8 - JavascriptJordane GreenView Answer on Stackoverflow
Solution 9 - JavascriptEndangeredMassaView Answer on Stackoverflow
Solution 10 - JavascriptethyrealView Answer on Stackoverflow