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

There are a few different ports of Box2D for JavaScript. Which one is the best?

  • Box2DJS - "converted from Box2DFlashAS3_1.4.3.1 in an automatic manner"

  • Box2Dflash 2.0 ported to JavaScript - "one big nasty hack that just happens to work"

  • box2dweb - "a port of Box2DFlash 2.1a to JavaScript. I developed an ActionScript 3 -to- JavaScript converter to generate the code"

  • box2d.js - "a JavaScript Version of Box2D 2.1a" (Added Nov 21, 2011)

Any ideas which version http://chrome.angrybirds.com/ uses, if any?

share|improve this question

closed as not constructive by Brandon Boone, FelipeAls, RivieraKid, Shikiryu, nalply Mar 10 at 21:24

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 24 down vote accepted

Here's what I've found:

  • Box2DJS is a port of Box2DFlash 1.4.3.1. box2dweb is a port of version 2.1a.
  • Box2DJS works "as a CommonJS module without any modifications at all" [1]
  • Box2DJS "not up-to-date and you have to import a big amount of JavaScript files in every project" [2]
  • box2dweb is contained in a single file [2]
  • box2dweb is "a much newer port and has a lot fewer issues" than Box2DJS [3]. However, switching might introduce new issues [4].
  • Box2DJS depends on Prototype but box2dweb does not [5]
  • Seth Ladd has promoted box2dweb with examples on his blog [6]
  • Nobody seems to be using the third alternative.

There's also a similar discussion on gamedev.stackexchange.com.

I'd say that the winner is box2dweb.

share|improve this answer
box2d is not as up to date as box2dweb. a lot of core classes are missing from the minified file. – codeninja Jan 22 at 20:55

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