views:

98

answers:

2

Is there any way to run a Javascript engine, like Spidermonkey, on Google App Engine? Spidermonkey is a C module, so obviously that wont work (GAE doesn't allow those types of modules)... is there something else available?

+3  A: 

Here is an article about running Rhino on AppEngine/Java. That should get you a long way towards a real, functioning JavaScript application on AppEngine.

Adam Crossland
cool... thanks! my app is in Python... but seems like there are some options to run both at same time
Nick Franceschina
+3  A: 

If you are looking for a JavaScript framework (as opposed to calling Java methods from JavaScript) you could try RingoJS (formerly Helma NG). It's a Rhino-based JavaScript framework that can run in AppEngine.

Matthew Crumley
Thanks for posting that; I've been trying to remember the name for a week!!
Pointy
thanks... I saw "Helma NG" listed in the comments of Adam's link... but couldn't actually find the project.
Nick Franceschina