vote up 5 vote down star
1

Is there some way to do multi-threading in JavaScript?

flag

7 Answers

vote up 10 vote down check

The words you want to google for are JavaScript Worker Threads

Apart from from Gears there's nothing available right now, but there's plenty of talk about how to implement this so I guess watch this question as the answer will no doubt change in future.

Here's the relevant documentation for Gears: WorkerPool API

WHATWG has a Draft Recommendation for worker threads: Web Workers

And there's also Mozilla’s DOM Worker Threads


Update: June 2009, current state of browser support for JavaScript threads

Firefox 3.5 has web workers. Some demos of web workers, if you want to see them in action:

The Gears plugin can also be installed in Firefox.

Safari 4, and the WebKit nightlies have worker threads:

Chrome has Gears baked in, so it can do threads, although it requires a confirmation prompt from the user (and it uses a different API to web workers, although it will work in any browser with the Gears plugin installed):

  • Google Gears WorkerPool Demo (not a good example as it runs too fast to test in Chrome and Firefox, although IE runs it slow enough to see it blocking interaction)

IE8 can only do threads with the Gears plugin installed

link|flag
which browsers support Web Workers? I know Firefox 3.5 does.. and it looks like that feature was pushed back and won't be in Chrome 2. – Jeff Atwood Jun 26 at 7:52
Although Safari 4 supports web workers it appears that only Firefox supports passing complex objects via postMessage: hacks.mozilla.org/2009/07/… See the last paragraph of that post on real world usage in the Bespin project for links to a shim for that implements the Worker API in terms of Google Gears and which adds the missing features to the worker implementation of Safari 4 and details of how they implemented transparent custom events on top of the postMessage interface. – Sam Hasler Jul 9 at 15:49
vote up 0 vote down

The new v8 engine which should come out today supports it (i think)

link|flag
vote up 1 vote down

You could use Narrative JavaScript, a compiler that will transforms your code into a state machine, effectively allowing you to emulate threading. It does so by adding a "yielding" operator (notated as '->') to the language that allows you to write asynchronous code in a single, linear code block.

link|flag
vote up 2 vote down

There is no true multi-threading in Javascript, but you can get asynchronous behavior using setTimeout() and asynchronous AJAX requests.

What exactly are you trying to accomplish?

link|flag
vote up 0 vote down

JavaScript does not contain threads, at least in its current form. What exactly are you trying to do?

link|flag
vote up 2 vote down

There's no true threading in JavaScript. JavaScript being the malleable language that it is, does allow you to emulate some of it. Here's an example I came across the other day.

http://www.neilmix.com/2007/02/07/threading-in-javascript-17/

link|flag
vote up 0 vote down

In raw Javascript, the best that you can do is using the few asynchronous calls (xmlhttprequest), but that's not really threading and very limited. Google Gears adds a number of APIs to the browser, some of which can be used for threading support.

link|flag

Your Answer

Get an OpenID
or

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