Tagged Questions

SpiderMonkey is Mozilla's JavaScript Engine, which executes JavaScript in the Firefox web browser.

learn more… | top users | synonyms

57
votes
14answers
16k views

Embedding JavaScript engine into .NET (C#)

just wondering if anyone has ever tried embedding and actually integrating any js engine into the .net environment. I could find and actually use (after a LOT of pain and effort, since it's pretty ...
15
votes
2answers
523 views

How to inherit a C++ class in JavaScript?

I am embedding SpiderMonkey to make my C++ library scriptable. To make it extendable, I need it possible to define a new class (JavaScript) inheriting one C++ base class of the library. Is there an ...
12
votes
3answers
1k views

rhino vs spidermonkey

I noticed ubuntu 10.04 removed the spidermonkey package. Rhino looks like it's still there though. What are the differences between rhino and spidermonkey (besides what language they're written in). ...
11
votes
4answers
3k views

Javascript Engines Advantages

I am confused about javascript engines right now. I know that V8 was a big deal because it compiled javascript to native code. Then I started reading about Mozilla SpiderMonkey, which from what I ...
8
votes
3answers
215 views

What are the key semantic differences between Ruby and Javascript

If one were to implement Ruby on top of a Javascript engine (either in the browser or on top of standalone V8 or Spidermonkey), what would be the key impedance mismatches between the Ruby and JS ...
8
votes
3answers
1k views

Click on a javascript link within python?

I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and ...
6
votes
3answers
1k views

Confusing operation of JavaScript `var` keyword

I’ve run into a very strange (to me) problem with the var keyword. I’ve reduced it to a fairly minimal test case, and found it’s exhibited in Node.js (thus, V8 and Chrome), Safari 4’s inspector (thus, ...
5
votes
1answer
448 views

E4X with NodeJS

Is there any way to get E4X(ECMAScript) to work with NodeJS? It would really help to output slick html/xml without hassle/noise. It works fine using SpiderMonkey since it is natively implemented, ...
4
votes
1answer
54 views

apply function in JavaScript

I'm learning JavaScript and I'm currently trying to figure out why (in Spidermonkey) [].concat.apply([1], [[2]]) returns the expected [1, 2], but Array.concat.apply([1], [[2]]) returns [2] ...
4
votes
3answers
130 views

Does creating functions consume more memory

// Case A function Constructor() { this.foo = function() { ... }; ... } // vs // Case B function Constructor() { ... }; Constructor.prototype.foo = function() { ... } One of the ...
4
votes
2answers
2k views

MongoDB doesn't understand UTF-8

If I add non-ASCII characters to MongoDB database then all db.find() fail telling "non ascii character detected". It's problem of SpiderMonkey, I have to rebuild it with UTF-8 support. I've tried to ...
4
votes
6answers
1k views

Parse JavaScript to instrument code

I need to split a JavaScript file into single instructions. For example a = 2; foo() function bar() { b = 5; print("spam"); } has to be separated into three instructions. (assignment, ...
3
votes
1answer
315 views

Typedef redefinition (C2371) for uint32 in two 3rd-party libraries

In my application I am using Box2D and Spidermonkey. Both libraries are defining the type uint32, which obviously gives me a compiler-error when using both in the same compilation unit. b2settings.h ...
3
votes
3answers
3k views

SpiderMonkey vs JavaScriptCore vs?

I have a C++ desktop application (written in wxWidgets) and I want to add support for some scripting language. Scripting would mostly be used for run-time conversions of strings, numbers and dates by ...
2
votes
3answers
918 views

Best way to get spidermonkey js on Ubuntu 11.04?

I need to install the Spidermonkey JS engine on my work machine. The project I'm working on has a jslint script that requires Spidermonkey or a similar js binary. I've tried compiling Spidermonkey ...
2
votes
2answers
138 views

How does event handling work internally with Javascript?

How does event handling work internally with Javascript, specifically Spidermonkey? I know if you want to handle a certain event, you write a function, and attach it to said event. What I am ...
2
votes
2answers
187 views

Once again: How to get DOM in JavaScript Engine? Has this somebody done?

There are several questions and tips about getting the DOM into Spider-, Trace- or JaegerMonkey. But has anyone done this? Is somewhere out there a in C embedable working JS-Engine including the DOM? ...
2
votes
1answer
184 views

JavaScript class memory usage

So I've been doing some JavaScript class-like stuff such as MyClass = function() { var x; this.sayX = function() { alert(x); } } but I've also seen MyClass = function() { ...
2
votes
1answer
887 views

DOM to use with SpiderMonkey?

I'm trying to use the GoogleMaps javascript library from inside of SpiderMonkey using the pythong wrapper, but I can't because of the lack of a DOM. Is there some way I can integrate a DOM into this ...
2
votes
1answer
799 views

JSON serialization in Spidermonkey

I'm using python-spidermonkey to run JavaScript code. In order to pass objects (instead of just strings) to Python, I'm thinking of returning a JSON string. This seems like a common issue, so I ...
2
votes
4answers
2k views

How can I get the memory address of a JavaScript variable?

Is it possible to find the memory address of a JavaScript variable? The JavaScript code is part of (embedded into) a normal application where JavaScript is used as a front end to C++ and does not run ...
1
vote
0answers
11 views

Threading in Spidermonkey

I am trying to enable a threaded debug dump in SpiderMonkey, by editing the jsinterp.cpp file. Basically, the things I am trying to do are as follows: Catch a JSScript before the main loop of ...
1
vote
0answers
71 views

JavaScript threads implementation in Spidermonkey

I need to implement multithreading like Web Workers inside my app, in which we planning to use Spidermonkey to execute javascript. I want something like that API: function BackgroundWorker() { // ...
1
vote
1answer
60 views

Javascript engine (or other embeddable language) for mongodb-like query execution environment and multithreading

I need some embeddable language for tasks similar to query execution in mongodb. Language should be fast and it should have both JIT and interpreter (for frequent scripts that JIT-compiled and for ...
1
vote
2answers
41 views

Spidermonkey bytecode documentation

I am looking for quite some time a documentation for all the spidermonkey's bytecodes, or at least something that tells me in general what a bytecode's purpose is. Does anyone can recommend such ...
1
vote
1answer
75 views

CouchDB - share functions across views, across design documents, across databases

Ok, here's the thing. I have a good JS background, had my share of JS in the past, and have lots of cool bare-bones tools I take with me from project to project that act like a library. I'm trying ...
1
vote
0answers
122 views

Function name in stack trace of SpiderMonkey

I'm using the SpiderMonkey engine 1.8 and I'm unhappy with the way it creates the stack trace. We occasionally receive auto-generated function names in JavaScript-files from the server, which aren't ...
1
vote
2answers
115 views

extracting strings from JavaScript code

Using embedded SpiderMonkey in my C++ application I would like to extract all the strings from JavaScript code. JavaScript code looks something like this: var foo = "something"; var space = " "; ...
1
vote
1answer
120 views

Modifying V8 JavaScript Engine provided with Chrome

I want support for a new API that is normally not supported by V8 JS Engine provided with Chrome. Is it possible to do this by tweaking V8 provided with Chrome. I'm open to using Spidermonkey which ...
1
vote
2answers
30 views

Piping to Spidermonkey isn't working correctly

I've installed the latest version of Spidermonkey (JavaScript-C 1.8.5+ 2011-04-16) and have noticed a strange quirk that you might know the answer to. In the past, if I did: echo -n "print('hi');" ...
1
vote
2answers
100 views

Use custom SpiderMonkey build with firefox 5

I am trying to build and use SpiderMonkey I compiled (for my academic research) with firefox 5 on a windows machine, but when I try to run firefox I get "missing JS_InitCTypesClass function in ...
1
vote
1answer
116 views

read() in Spidermonkey with unicode

In the Spidermonkey shell, reading in a file with the read() function ignores the encoding of the file. Is there any way to read in a UTF-8 or other multi-byte encoded file and preserve the multi-byte ...
1
vote
1answer
86 views

Are there any good scriptable webpage rendering engines besides Selenium RC?

I like using Selenium RC for automating interaction with webpages that require JavaScript, except for the fact that it goes through launching an full instance of Firefox to run a script. Questions: ...
1
vote
2answers
145 views

JavaScript optimizations

So I've been writing a game in JavaScript (not a web game, using a game engine where JavaScript just happens to be the scripting language). Unfortunately, the game engine's JavaScript engine is an ...
1
vote
1answer
74 views

Script timeout in Spidermonkey

How can I set a timeout on execution of a Javascript code in Spidermonkey? The documentation says that JS_SetOperationCallback could resolve this problem, but how can I define the max interval time ...
1
vote
1answer
268 views

How to connect to mongodb from Firefox plugin

HI all, I write a Firefox plugin and want to save data to mongodb (this plugin use for internal application), I use spidermonkey, what I known is mongodb have mongo is a javascript spidermon shell, ...
1
vote
2answers
192 views

SpiderMonkey: How do i get the name of the current JSObject from c?

someone asked how to get the value of a JSObject property from c. That helped me a bit. But, does anyone know how to get the current JavaScript name of an object from c? example: var ...
1
vote
1answer
360 views

Is it possible to increase the recursion limit in SpiderMonkey?

I'm currently working on problems in Project Euler with JavaScript. For the most part I've been using for loops to iterate through the problems but wanted to use recursive functions. However, it seems ...
1
vote
1answer
483 views

How to load remote javascript into a SpiderMonkey context?

I have a server which will be serving up javascript files, I need to grab it and execute some of it's functions using SpiderMonkey in python. How can I do this?
1
vote
1answer
157 views

Spidermonkey shell. How to change encoding of source code?

If I enter print("®".length) in smjs, it prints 2. If I enter javascript:alert("®".length) in my firefox as well as opera, it prints 1. Rhino prints 1 too. Is it possible to tell smjs that I want ...
1
vote
1answer
693 views

Command Line JavaScript Input Arguments Issues While Minifying JavaScript in Gedit

I want to minify my JavaScript files immediately in Gedit. I tried do it via external tools option with jsmin.js script. I have SpiderMonkey engine installed. I stored jsmin.js file at ...
1
vote
2answers
820 views

file I/O in Spidermonkey

Thanks to python-spidermonkey, using JavaScript code from Python is really easy. However, instead of using Python to read JS code from a file and passing the string to Spidermonkey, is there a way to ...
1
vote
1answer
868 views

jsprf.c:644: error: incompatible types in assignment

Can you help me with this error I encountered while building Spidermonkey in PPC? make -f Makefile.ref cat: ../../dist/Linux_All_DBG.OBJ/nspr/Version: No such file or directory cd editline; make ...
1
vote
2answers
287 views

How to Implement Closures Using SpiderMonkey API?

I've been working with the SpiderMonkey C API and would like to implement a closure in C using their API. The one I would like to implement is fairly complex, but I can't even figure out how to do a ...
1
vote
0answers
352 views

How can I get the full backtrace in spidermonkey (JSAPI) from my reportError function

I'm embedding javascript in my app using spidermonkey and I have a function called reportError that receives a JSErrorReport. It seems simple to grab the current line of the error, but is it possible ...
0
votes
0answers
11 views

Cannot compile CouchDB - how does its configure script work?

I'm trying to compile Apache CouchDB 1.0.3, but the ./configure script keeps failing. Here is the error message: checking for JS_NewContext in -lmozjs... no checking for JS_NewContext in -ljs... no ...
0
votes
2answers
33 views

What is the difference between Rhino and Spidermonkey JavaScript engines?

For the first time, I began learning Javascript, however on the start I stuck up with two possible options: Rhino and Spidermonkey. Could you please, tell me what is one, and what is another, so I can ...
0
votes
2answers
89 views

Javascript engine options for Android (non-WebKit)

We have created a HTML5 + Javascript application and would like to port it to Android. We already know WebKit is not capable to run the HTML5 app because Heterogenous Android codebase supports the ...
0
votes
2answers
67 views

Failing to install Spidermonkey because of autoconf

Trying to install Spidermonkey following this guide; https://developer.mozilla.org/en/Building_only_SpiderMonkey#Easy_build I'm supposed to follow these steps: cd js/src autoconf-2.13 ...
0
votes
2answers
41 views

Compile CouchDB from source on Ubuntu Lucid, automatically

Mozilla SpiderMonkey is not provided anymore in Ubuntu Lucid as a standalone package. According to this link, you have to use the library provided with xulrunner, and say so to the CouchDB configure ...

1 2