Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder if anyone has successfully ported a javascript engine/interpreter to iOS. I'm writing an iPhone game that I would like to use Javascript as the high-level scripting language (AI, gameplay, etc.), but to do that, I need to compile the JS engine into a static library and link it against my objectiveC program for iPhone OS. There are some candidate JS engine I'm looking at but I couldn't find any successful cases for doing that.

Here're the js engine I was hoping to use for iOS

  • google's V8 javascript engine
  • mozilla's SpiderMonkey

The alternative is to use UIWebView's Javascript callback interface, but that requires loading the entire UIWebView into memory and the experiences I heard is that it is usually slow in performance.

Appreciate if anyone had similar experiences of do this or know any references for that!

share|improve this question
Any reason you don't want to use JavaScriptCore (webkit.org/projects/javascript/index.html). It sounds like it can be built as a static library and provides Obj-C bindings. – Justin Niessner Mar 15 '11 at 20:47
Hi Justin, the JavaScriptCore source code in WebKit can be built on Mac OS X, however, it seems non-trivial to build it for iOS, but I will give it a try later – Denny Mar 16 '11 at 6:01
Hi Denny, did you manage get anything to work for iOS?? – Irene Apr 14 '11 at 8:10

2 Answers

up vote 22 down vote accepted

There are two projects you might be interested in:

  1. JavaScriptCore-iOS
  2. iMonkey

It is absolutely possible to build and ship a JavaScript engine with your iOS app, see http://www.phoboslab.org/log/2011/04/ios-and-javascript-for-real-this-time. Titanium does that, too: https://github.com/appcelerator/webkit_titanium/tree/master/Source/JavaScriptCore. Also see http://www.phoboslab.org/log/2011/06/javascriptcore-project-files-for-ios.

I've also made a small app that shows how to use JSC on iOS: https://github.com/jfahrenkrug/AddressBookSpy

Enjoy.

share|improve this answer
Note that JavaScriptCore appears to be LGPL v2 which makes it questionable for closed source iOS apps unless you provide the .o files so someone can relink your app with a different version of the JavaScriptCore library (ask your lawyer, this is not legal advice). "If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it." – Dad Aug 8 '11 at 18:15
@Dad Thanks, good point! – Johannes Fahrenkrug Aug 9 '11 at 8:07
@Denny After a while, you should "accept" one of the answers to your question :) It's the Right Thing To Do :) – Johannes Fahrenkrug Nov 4 '11 at 19:12
1  
thanks Johannes, I never know there's a button for that :-0 . Thanks everyone! I'm quite surprised that there's a lot of good answers here. As to the progress of doing the embedding, I followed your suggestion of the JavaScriotCore-iOS project and yes I am able to compile and run the native javascript interpreter on iOS . – Denny Nov 29 '11 at 22:35
Awesome, I'm glad it worked! – Johannes Fahrenkrug Nov 30 '11 at 11:11
show 1 more comment

Take a look at the open source project Ejecta, which embeds JavaScriptCore. It provides the HTML5 canvas API, and uses OpenGL & OpenAL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.