Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Browserify: IE8 Compatibility

I've seen it mentioned in a few places that Browserify isn't compatible with IE8 and below (here, here, and alluded to here).

I don't see anything official about this in the docs. It looks like it may be the use of Function.prototype.call() but I can't tell for sure.

Does anyone know for sure:

  • how far back IE is supported
  • what code (if any) is incompatible with IE8
  • any recommended workarounds for IE8 specifically
like image 259
cantera Avatar asked Mar 17 '14 20:03

cantera


1 Answers

I use Browserify for my library http://github.com/pllee/luc to build all of the browser code. My tests pass on IE6 and I am using ES5 shim but I don't think that would make Browserify work (chicken and egg situation). Those links you show are quite old and I know Browserify has changed its implementation since then.

You can see on their official page that they do support IE7 and greater.

enter image description here

like image 169
pllee Avatar answered Oct 21 '22 13:10

pllee